Uses of Interface
com.tangosol.config.xml.AttributeProcessor
Package
Description
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
Modifier and TypeClassDescriptionclass
ASimpleAttributeProcessor
is a simpleAttributeProcessor
implementation that will construct, initialize (via constructor injection) and return a specific type of object based on information in anXmlAttribute
.Modifier and TypeMethodDescriptionAbstractNamespaceHandler.getAttributeProcessor
(XmlAttribute attribute) Obtains theAttributeProcessor
that is suitable for processing the specifiedXmlAttribute
in the xml namespace associated with thisNamespaceHandler
.AbstractNamespaceHandler.getAttributeProcessor
(String localName) Obtains theAttributeProcessor
registered with the specified localName (in the namespace).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
.Modifier and TypeMethodDescriptionvoid
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
.