Uses of Interface
com.tangosol.config.xml.AttributeProcessor
-
Packages that use AttributeProcessor 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. -
-
Uses of AttributeProcessor in com.tangosol.config.xml
Classes in com.tangosol.config.xml that implement AttributeProcessor Modifier and Type Class Description class
SimpleAttributeProcessor<T>
ASimpleAttributeProcessor
is a simpleAttributeProcessor
implementation that will construct, initialize (via constructor injection) and return a specific type of object based on information in anXmlAttribute
.Methods in com.tangosol.config.xml that return AttributeProcessor Modifier and Type Method Description AttributeProcessor<?>
AbstractNamespaceHandler. getAttributeProcessor(XmlAttribute attribute)
Obtains theAttributeProcessor
that is suitable for processing the specifiedXmlAttribute
in the xml namespace associated with thisNamespaceHandler
.AttributeProcessor<?>
AbstractNamespaceHandler. getAttributeProcessor(String localName)
Obtains theAttributeProcessor
registered with the specified localName (in the namespace).AttributeProcessor<?>
NamespaceHandler. getAttributeProcessor(XmlAttribute attribute)
Obtains theAttributeProcessor
that is suitable for processing the specifiedXmlAttribute
in the xml namespace associated with thisNamespaceHandler
.protected AttributeProcessor<?>
AbstractNamespaceHandler. onUnknownAttribute(XmlAttribute attribute)
A call-back to handle when anXmlAttribute
is unknown to theNamespaceHandler
.Methods in com.tangosol.config.xml with parameters of type AttributeProcessor Modifier and Type Method Description void
AbstractNamespaceHandler. registerProcessor(String sLocalName, AttributeProcessor<?> processor)
Registers anAttributeProcessor
forXmlAttribute
s with the specified name.<T> void
DefaultProcessingContext. registerProcessor(Class<T> clzType, AttributeProcessor<T> processor)
Registers anAttributeProcessor
that may be used to process specific types of values contained inXmlAttribute
s with in theProcessingContext
.<T> void
ProcessingContext. registerProcessor(Class<T> clzType, AttributeProcessor<T> processor)
Registers anAttributeProcessor
that may be used to process specific types of values contained inXmlAttribute
s with in theProcessingContext
.
-