Uses of Interface
net.sf.beanlib.spi.CustomBeanTransformerSpi.Factory

Packages that use CustomBeanTransformerSpi.Factory
net.sf.beanlib.hibernate JavaBean Library for Hibernate (Common code base) 
net.sf.beanlib.hibernate3 JavaBean Library for Hibernate 3.x 
net.sf.beanlib.joda JavaBean Library for Joda-Time 1.5.2. 
net.sf.beanlib.provider Beanlib Servce Provider Implementations 
net.sf.beanlib.provider.replicator Replicator Servce Provider Implementations 
net.sf.beanlib.spi Beanlib Servce Provider Interface 
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.hibernate
 

Methods in net.sf.beanlib.hibernate with parameters of type CustomBeanTransformerSpi.Factory
 HibernateBeanReplicator HibernateBeanReplicator.initCustomTransformerFactory(CustomBeanTransformerSpi.Factory... customBeanTransformerFactories)
          Initializes with one or more custom bean transformer factories that will be chained together.
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.hibernate3
 

Classes in net.sf.beanlib.hibernate3 that implement CustomBeanTransformerSpi.Factory
static class LazyHibernateCustomBeanTransformer.Factory
          The factory for a LazyHibernateCustomBeanTransformer.
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.joda
 

Classes in net.sf.beanlib.joda that implement CustomBeanTransformerSpi.Factory
static class JodaTimeTransformer.Factory
           
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.provider
 

Methods in net.sf.beanlib.provider with parameters of type CustomBeanTransformerSpi.Factory
 BeanTransformer BeanTransformer.initCustomTransformerFactory(CustomBeanTransformerSpi.Factory customTransformer)
           
 

Constructors in net.sf.beanlib.provider with parameters of type CustomBeanTransformerSpi.Factory
BeanTransformer(CustomBeanTransformerSpi.Factory... customBeanTransformerFactories)
          Convenient constructor that both defaults to use BeanPopulator.factory, and allows plugging in one or more custom bean transformer factories that will be chained together.
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.provider.replicator
 

Constructors in net.sf.beanlib.provider.replicator with parameters of type CustomBeanTransformerSpi.Factory
BeanReplicator(CustomBeanTransformerSpi.Factory... customTransformerFactory)
          Convenient constructor that both defaults to use BeanTransformer, and allows plugging in one or more custom bean transformer factories that will be chained together.
 

Uses of CustomBeanTransformerSpi.Factory in net.sf.beanlib.spi
 

Classes in net.sf.beanlib.spi that implement CustomBeanTransformerSpi.Factory
static class ChainedCustomBeanTransformer.Factory
          Factory to create a ChainedCustomBeanTransformer.
 

Fields in net.sf.beanlib.spi declared as CustomBeanTransformerSpi.Factory
(package private) static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.NoopCustomTransformer.FACTORY
          Factory of a transformer that performs no custom transformation.
(package private) static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.IdentityCustomTransformer.FACTORY
          Factory of a transformer that always transform to the same input instance.
(package private) static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.NullCustomTransformer.FACTORY
          Factory of a transformer that always transform to null.
 

Fields in net.sf.beanlib.spi with type parameters of type CustomBeanTransformerSpi.Factory
private  List<CustomBeanTransformerSpi.Factory> ChainedCustomBeanTransformer.Factory.customTransformerFactories
           
 

Methods in net.sf.beanlib.spi that return CustomBeanTransformerSpi.Factory
static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.getIdentityCustomTransformerFactory()
          Returns the factory of a custom transformer that always performs identical transformation (ie returns the same input instance).
static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.getNoopCustomTransformerFactory()
          Returns the factory of a custom transformer that is always not applicable.
static CustomBeanTransformerSpi.Factory TrivialCustomBeanTransformerFactories.getNullCustomTransformerFactory()
          Returns the factory a custom transformer that always transforms to null.
 

Methods in net.sf.beanlib.spi with parameters of type CustomBeanTransformerSpi.Factory
 ChainedCustomBeanTransformer.Factory ChainedCustomBeanTransformer.Factory.appendCustomerBeanTransformerFactory(CustomBeanTransformerSpi.Factory customBeanTransformerFactory)
           
 BeanTransformerSpi BeanTransformerSpi.initCustomTransformerFactory(CustomBeanTransformerSpi.Factory customTransformerFactory)
          Initializes with a custom transformer factory.
 

Constructors in net.sf.beanlib.spi with parameters of type CustomBeanTransformerSpi.Factory
ChainedCustomBeanTransformer.Factory(CustomBeanTransformerSpi.Factory... customBeanTransformerFactories)