Uses of Interface
com.tangosol.config.xml.AttributeProcessor
Packages that use 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
Classes in com.tangosol.config.xml that implement AttributeProcessorModifier 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
.Methods in com.tangosol.config.xml that return AttributeProcessorModifier 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
.Methods in com.tangosol.config.xml with parameters of type AttributeProcessorModifier 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
.