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.xmlClasses in com.tangosol.config.xml that implement AttributeProcessorModifier and TypeClassDescriptionclassASimpleAttributeProcessoris a simpleAttributeProcessorimplementation 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 theAttributeProcessorthat is suitable for processing the specifiedXmlAttributein the xml namespace associated with thisNamespaceHandler.AbstractNamespaceHandler.getAttributeProcessor(String localName) Obtains theAttributeProcessorregistered with the specified localName (in the namespace).NamespaceHandler.getAttributeProcessor(XmlAttribute attribute) Obtains theAttributeProcessorthat is suitable for processing the specifiedXmlAttributein the xml namespace associated with thisNamespaceHandler.protected AttributeProcessor<?> AbstractNamespaceHandler.onUnknownAttribute(XmlAttribute attribute) A call-back to handle when anXmlAttributeis unknown to theNamespaceHandler.Methods in com.tangosol.config.xml with parameters of type AttributeProcessorModifier and TypeMethodDescriptionvoidAbstractNamespaceHandler.registerProcessor(String sLocalName, AttributeProcessor<?> processor) Registers anAttributeProcessorforXmlAttributes with the specified name.<T> voidDefaultProcessingContext.registerProcessor(Class<T> clzType, AttributeProcessor<T> processor) Registers anAttributeProcessorthat may be used to process specific types of values contained inXmlAttributes with in theProcessingContext.<T> voidProcessingContext.registerProcessor(Class<T> clzType, AttributeProcessor<T> processor) Registers anAttributeProcessorthat may be used to process specific types of values contained inXmlAttributes with in theProcessingContext.