| Package | Description | 
|---|---|
| com.tangosol.config.xml | 
 Defines classes and interfaces for processing Xml documents and building object
models, like configuration, based on said documents though the use of injection. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
SimpleAttributeProcessor<T>
A  
SimpleAttributeProcessor is a simple AttributeProcessor implementation that will construct,
 initialize (via constructor injection) and return a specific type of object based on information in
 an XmlAttribute. | 
| Modifier and Type | Method and Description | 
|---|---|
AttributeProcessor<?> | 
AbstractNamespaceHandler.getAttributeProcessor(String localName)
Obtains the  
AttributeProcessor registered with the specified
 localName (in the namespace). | 
AttributeProcessor<?> | 
AbstractNamespaceHandler.getAttributeProcessor(XmlAttribute attribute)
Obtains the  
AttributeProcessor that is suitable for processing the specified XmlAttribute
 in the xml namespace associated with this NamespaceHandler. | 
AttributeProcessor<?> | 
NamespaceHandler.getAttributeProcessor(XmlAttribute attribute)
Obtains the  
AttributeProcessor that is suitable for processing the specified XmlAttribute
 in the xml namespace associated with this NamespaceHandler. | 
protected AttributeProcessor<?> | 
AbstractNamespaceHandler.onUnknownAttribute(XmlAttribute attribute)
A call-back to handle when an  
XmlAttribute is unknown to the NamespaceHandler. | 
| Modifier and Type | Method and Description | 
|---|---|
<T> void | 
DefaultProcessingContext.registerProcessor(Class<T> clzType,
                 AttributeProcessor<T> processor)
Registers an  
AttributeProcessor that may be used to process specific types of values
 contained in XmlAttributes with in the ProcessingContext. | 
<T> void | 
ProcessingContext.registerProcessor(Class<T> clzType,
                 AttributeProcessor<T> processor)
Registers an  
AttributeProcessor that may be used to process specific types of values
 contained in XmlAttributes with in the ProcessingContext. | 
void | 
AbstractNamespaceHandler.registerProcessor(String sLocalName,
                 AttributeProcessor<?> processor)
Registers an  
AttributeProcessor for XmlAttributes with the specified name. |