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

Packages that use Descriptor
org.apache.commons.betwixt This package contains the main betwixt introspection code. 
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. 
 

Uses of Descriptor in org.apache.commons.betwixt
 

Subclasses of Descriptor in org.apache.commons.betwixt
 class AttributeDescriptor
          AttributeDescriptor describes the XML attributes to be created for a bean instance.
 class ElementDescriptor
          ElementDescriptor describes the XML elements to be created for a bean instance.
 class NodeDescriptor
           Common superclass for ElementDescriptor and AttributeDescriptor.
 class TextDescriptor
          Describes mixed-content text.
 

Fields in org.apache.commons.betwixt declared as Descriptor
private  Descriptor[] ElementDescriptor.contentDescriptors
          Descriptors for child content.
 

Methods in org.apache.commons.betwixt that return Descriptor
 Descriptor XMLIntrospector.createDescriptor(java.beans.PropertyDescriptor propertyDescriptor, boolean useAttributesForPrimitives)
          Deprecated. 0.5 use XMLIntrospector.createXMLDescriptor(org.apache.commons.betwixt.BeanProperty).
 Descriptor XMLIntrospector.createXMLDescriptor(BeanProperty beanProperty)
          Create a XML descriptor from a bean one.
 Descriptor BeanProperty.createXMLDescriptor(IntrospectionConfiguration configuration)
          Create a XML descriptor from a bean one.
 Descriptor[] ElementDescriptor.getContentDescriptors()
          Returns descriptors for the child content of the element this describes.
 

Methods in org.apache.commons.betwixt with parameters of type Descriptor
 void ElementDescriptor.addContentDescriptor(Descriptor descriptor)
          Adds a descriptor for child content.
 void ElementDescriptor.setContentDescriptors(Descriptor[] contentDescriptors)
          Sets the descriptors for the child content of the element this describes.
 

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

Methods in org.apache.commons.betwixt.digester with parameters of type Descriptor
protected  void AddDefaultsRule.addDescriptor(Descriptor nodeDescriptor)
          Add a desciptor to the top object on the Digester stack.
 

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

Methods in org.apache.commons.betwixt.io with parameters of type Descriptor
private  java.lang.String AbstractBeanWriter.convertToString(java.lang.Object value, Descriptor descriptor, Context context)
          Converts an object to a string.