Uses of Class
org.apache.commons.betwixt.XMLIntrospector

Packages that use XMLIntrospector
org.apache.commons.betwixt.digester This package contains the Digester and associated rules and helper classes for parsing the XMLBeanInfo metadata from an XML file format. 
org.apache.commons.betwixt.io Package contains classes dealing directly with the reading and writing of beans. 
org.apache.commons.betwixt.io.read Package contains strategy and configuration classes used by reading only. 
org.apache.commons.betwixt.schema WARNING: EXPERIMENTAL Contains classes that generate XML (w3c) schema from Betwixt descriptors. 
 

Uses of XMLIntrospector in org.apache.commons.betwixt.digester
 

Fields in org.apache.commons.betwixt.digester declared as XMLIntrospector
private  XMLIntrospector XMLBeanInfoDigester.introspector
          the introspector that is using me
 

Methods in org.apache.commons.betwixt.digester that return XMLIntrospector
protected  XMLIntrospector RuleSupport.getXMLIntrospector()
          Gets XMLIntrospector to be used for introspection
 XMLIntrospector XMLBeanInfoDigester.getXMLIntrospector()
          Gets the XMLIntrospector that's using this digester.
 

Methods in org.apache.commons.betwixt.digester with parameters of type XMLIntrospector
static NodeDescriptor XMLIntrospectorHelper.createDescriptor(java.beans.PropertyDescriptor propertyDescriptor, boolean useAttributesForPrimitives, XMLIntrospector introspector)
          Deprecated. 0.5 this method has been replaced by createDescriptor(java.beans.PropertyDescriptor, boolean)
static void XMLIntrospectorHelper.defaultAddMethods(XMLIntrospector introspector, ElementDescriptor rootDescriptor, java.lang.Class beanClass)
          Deprecated. 0.6 use the method in XMLIntrospector instead
protected static ElementDescriptor XMLIntrospectorHelper.findGetCollectionDescriptor(XMLIntrospector introspector, ElementDescriptor rootDescriptor, java.lang.String propertyName)
          Deprecated. 0.6 moved into XMLIntrospector
 void XMLBeanInfoDigester.setXMLIntrospector(XMLIntrospector introspector)
          Sets the introspector that is using me
 

Uses of XMLIntrospector in org.apache.commons.betwixt.io
 

Fields in org.apache.commons.betwixt.io declared as XMLIntrospector
private  XMLIntrospector AbstractBeanWriter.introspector
          Introspector used
private  XMLIntrospector BeanReader.introspector
          Introspector used
 

Methods in org.apache.commons.betwixt.io that return XMLIntrospector
 XMLIntrospector AbstractBeanWriter.getXMLIntrospector()
          Gets the introspector used.
 XMLIntrospector BeanReader.getXMLIntrospector()
           Get the introspector used.
 

Methods in org.apache.commons.betwixt.io with parameters of type XMLIntrospector
 void AbstractBeanWriter.setXMLIntrospector(XMLIntrospector introspector)
          Sets the introspector to be used.
 void BeanReader.setXMLIntrospector(XMLIntrospector introspector)
           Set the introspector to be used.
 

Constructors in org.apache.commons.betwixt.io with parameters of type XMLIntrospector
BeanRuleSet(XMLIntrospector introspector, java.lang.String basePath, ElementDescriptor baseElementDescriptor, java.lang.Class baseBeanClass, boolean matchIDs)
          Deprecated. 0.5 use constructor which takes a ReadContext instead
BeanRuleSet(XMLIntrospector introspector, java.lang.String basePath, ElementDescriptor baseElementDescriptor, java.lang.Class baseBeanClass, Context context)
          Deprecated. 0.5 use the constructor which takes a ReadContext instead
BeanRuleSet(XMLIntrospector introspector, java.lang.String basePath, ElementDescriptor baseElementDescriptor, java.lang.Class baseBeanClass, ReadContext baseContext)
          Base constructor.
BeanRuleSet(XMLIntrospector introspector, java.lang.String basePath, ElementDescriptor baseElementDescriptor, Context context)
          Deprecated. 0.6 use the constructor which takes a ReadContext instead
 

Uses of XMLIntrospector in org.apache.commons.betwixt.io.read
 

Fields in org.apache.commons.betwixt.io.read declared as XMLIntrospector
private  XMLIntrospector ReadContext.xmlIntrospector
          The XMLIntrospector to be used to map the xml
 

Methods in org.apache.commons.betwixt.io.read that return XMLIntrospector
 XMLIntrospector ReadContext.getXMLIntrospector()
          Gets the XMLIntrospector to be used to create the mappings for the xml.
 

Methods in org.apache.commons.betwixt.io.read with parameters of type XMLIntrospector
 void ReadContext.setXMLIntrospector(XMLIntrospector xmlIntrospector)
          Sets the XMLIntrospector to be used to create the mappings for the xml.
 

Uses of XMLIntrospector in org.apache.commons.betwixt.schema
 

Fields in org.apache.commons.betwixt.schema declared as XMLIntrospector
private  XMLIntrospector SchemaTranscriber.introspector
          Used to introspect beans in order to generate XML
private  XMLIntrospector Schema.introspector
           
 

Methods in org.apache.commons.betwixt.schema that return XMLIntrospector
 XMLIntrospector SchemaTranscriber.getXMLIntrospector()
          Gets the XMLIntrospector used to create XMLInfoBean's.
 

Methods in org.apache.commons.betwixt.schema with parameters of type XMLIntrospector
 void SchemaTranscriber.setXMLIntrospector(XMLIntrospector introspector)
          Sets the XMLIntrospector used to create XMLInfoBeans.
 

Constructors in org.apache.commons.betwixt.schema with parameters of type XMLIntrospector
Schema(XMLIntrospector introspector)