Uses of Interface
org.apache.commons.betwixt.expression.Updater

Packages that use Updater
org.apache.commons.betwixt This package contains the main betwixt introspection code. 
org.apache.commons.betwixt.expression This package contains the system which extracts values from beans. 
org.apache.commons.betwixt.io.read Package contains strategy and configuration classes used by reading only. 
 

Uses of Updater in org.apache.commons.betwixt
 

Fields in org.apache.commons.betwixt declared as Updater
private  Updater BeanProperty.propertyUpdater
          The Updater used to write values of this property (possibly null)
private  Updater Descriptor.updater
          the updater used to update the current bean from the text value of this node
 

Methods in org.apache.commons.betwixt that return Updater
 Updater BeanProperty.getPropertyUpdater()
          Gets the updater used to write to this properyty.
 Updater Descriptor.getUpdater()
          Gets the Updater used to update a Context from the text value corresponding to this node in an xml document
 

Methods in org.apache.commons.betwixt with parameters of type Updater
private  ElementDescriptor BeanProperty.createDescriptorForCollective(IntrospectionConfiguration configuration, Updater propertyUpdater, Expression propertyExpression)
          Creates an ElementDescriptor for a collective type property
private  NodeDescriptor BeanProperty.createDescriptorForPrimitive(IntrospectionConfiguration configuration, Expression propertyExpression, Updater propertyUpdater)
          Creates a NodeDescriptor for a primitive type node
private  ElementDescriptor BeanProperty.createDescriptorForStandard(Expression propertyExpression, Updater propertyUpdater, IntrospectionConfiguration configuration)
          Creates an ElementDescriptor for a standard property
 void Descriptor.setUpdater(Updater updater)
          Sets the Updater used to update a Context from the text value corresponding to this node in an xml document
 

Constructors in org.apache.commons.betwixt with parameters of type Updater
BeanProperty(java.lang.String propertyName, java.lang.Class propertyType, Expression propertyExpression, Updater propertyUpdater)
          Construct a BeanProperty.
 

Uses of Updater in org.apache.commons.betwixt.expression
 

Classes in org.apache.commons.betwixt.expression that implement Updater
 class CollectionUpdater
          Updates a Collection by adding the new value to it.
 class DynaBeanUpdater
          Updates DynaBean's.
 class MethodUpdater
          MethodUpdater updates the current bean context by calling a WriteMethod with the String value from the XML attribute or element.
 class TypedUpdater
          Abstracts common features for strongly typed Updater's.
 

Methods in org.apache.commons.betwixt.expression that return Updater
 Updater MapEntryAdder.getKeyUpdater()
          Gets the entry key Updater.
 Updater MapEntryAdder.getValueUpdater()
          Gets the entry value Updater.
 

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

Classes in org.apache.commons.betwixt.io.read that implement Updater
private static class ArrayBindAction.ListUpdater
          Updates a list by adding the new value
 

Fields in org.apache.commons.betwixt.io.read declared as Updater
private  Updater ArrayBindAction.originalUpdater
           
 

Methods in org.apache.commons.betwixt.io.read that return Updater
 Updater ReadContext.getCurrentUpdater()
          Gets the current Updater.
 Updater ReadContext.popUpdater()
          Pops the top Updater from the stack.
 

Methods in org.apache.commons.betwixt.io.read with parameters of type Updater
 void ReadContext.pushUpdater(Updater updater)
          Pushes an Updater onto the stack.
private  void ReadContext.substituteUpdater(Updater originalUpdater, Updater newUpdater)
          Substitutes one updater in the stack for another.