Uses of Interface
net.sf.beanlib.spi.Transformable

Packages that use Transformable
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.spi Beanlib Servce Provider Interface 
 

Uses of Transformable in net.sf.beanlib.hibernate3
 

Classes in net.sf.beanlib.hibernate3 that implement Transformable
 class Hibernate3BeanTransformer
          A Hibernate 3 Bean Transformer is simply a BeanTransformer with the extended capabilities of handling Hibernate (v3.x) objects.
 class LazyHibernateCustomBeanTransformer
          A convenient custom bean transformer that can be used to replicate only the initialized properties/associations in a Hibernate object graph.
 

Uses of Transformable in net.sf.beanlib.joda
 

Classes in net.sf.beanlib.joda that implement Transformable
 class JodaTimeTransformer
          A simple Joda Time Transformer.
 

Uses of Transformable in net.sf.beanlib.provider
 

Classes in net.sf.beanlib.provider that implement Transformable
 class BeanTransformer
          Default implementation of BeanTransformerSpi.
 

Fields in net.sf.beanlib.provider declared as Transformable
private  Transformable BeanPopulator.transformer
           
 

Methods in net.sf.beanlib.provider that return Transformable
 Transformable BeanPopulator.getTransformer()
           
 

Methods in net.sf.beanlib.provider with parameters of type Transformable
 BeanPopulator BeanPopulator.initTransformer(Transformable transformer)
           
 

Uses of Transformable in net.sf.beanlib.spi
 

Subinterfaces of Transformable in net.sf.beanlib.spi
 interface BeanTransformerSpi
          Bean Transformer SPI.
 interface CustomBeanTransformerSpi
          Custom Bean Transformer SPI.
 

Classes in net.sf.beanlib.spi that implement Transformable
 class ChainedCustomBeanTransformer
          Supports a chain of custom transformation.
 

Methods in net.sf.beanlib.spi that return Transformable
 Transformable BeanPopulatorSpi.getTransformer()
          Returns the transformer used by this bean populator.
 

Methods in net.sf.beanlib.spi with parameters of type Transformable
 BeanPopulatorSpi BeanPopulatorSpi.initTransformer(Transformable transformer)
          Used to configure a transformer to transform a property value read from a source JavaBean into a value to be to set the corresponding property of a target JavaBean.