Uses of Interface
org.apache.commons.betwixt.io.read.ChainedBeanCreator

Packages that use ChainedBeanCreator
org.apache.commons.betwixt.io.read Package contains strategy and configuration classes used by reading only. 
 

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

Fields in org.apache.commons.betwixt.io.read declared as ChainedBeanCreator
private static ChainedBeanCreator ChainedBeanCreatorFactory.derivedBeanCreator
          Singleton instance for creating derived beans
private static ChainedBeanCreator ChainedBeanCreatorFactory.elementTypeBeanCreator
          Singleton instance that creates beans based on type
private static ChainedBeanCreator ChainedBeanCreatorFactory.idRefBeanCreator
          Singleton instance that creates beans based on IDREF
 

Methods in org.apache.commons.betwixt.io.read that return ChainedBeanCreator
static ChainedBeanCreator ChainedBeanCreatorFactory.createDerivedBeanCreator()
          Creates a ChainedBeanCreator that constructs derived beans.
static ChainedBeanCreator ChainedBeanCreatorFactory.createElementTypeBeanCreator()
          Creates a ChainedBeanCreator that constructs beans based on element type.
static ChainedBeanCreator ChainedBeanCreatorFactory.createIDREFBeanCreator()
          Creates a ChainedBeanCreator that finds existing beans based on their IDREF.
 

Methods in org.apache.commons.betwixt.io.read with parameters of type ChainedBeanCreator
 void BeanCreationList.addBeanCreator(ChainedBeanCreator beanCreator)
          Adds a BeanCreator to the end of the chain.
 void BeanCreationList.insertBeanCreator(int index, ChainedBeanCreator beanCreator)
          Inserts a BeanCreator at the given position in the chain.