Package com.tangosol.config.xml
Interface AttributeProcessor<T>
- Type Parameters:
 T- the type of value that will be returned by theAttributeProcessor
- All Known Implementing Classes:
 SimpleAttributeProcessor
public interface AttributeProcessor<T>
An 
AttributeProcessor is responsible for processing XmlAttribute content
 to return a strongly-typed value.- Since:
 - Coherence 12.1.2
 - Author:
 - bo 2011.06.14
 
- 
Method Summary
Modifier and TypeMethodDescriptionprocess(ProcessingContext context, XmlAttribute attribute) Process anXmlAttributeand return a specific type of value. 
- 
Method Details
- 
process
Process anXmlAttributeand return a specific type of value.- Parameters:
 context- theProcessingContextin which theXmlAttributeis being processedattribute- theXmlAttributeto be processed- Returns:
 - a value of type T
 - Throws:
 ConfigurationException- when a configuration problem was encountered
 
 -