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

Packages that use BeanPopulatorBaseSpi
net.sf.beanlib.hibernate JavaBean Library for Hibernate (Common code base) 
net.sf.beanlib.hibernate3 JavaBean Library for Hibernate 3.x 
net.sf.beanlib.provider Beanlib Servce Provider Implementations 
net.sf.beanlib.spi Beanlib Servce Provider Interface 
 

Uses of BeanPopulatorBaseSpi in net.sf.beanlib.hibernate
 

Classes in net.sf.beanlib.hibernate that implement BeanPopulatorBaseSpi
 class HibernateBeanReplicator
          Hibernate Bean Replicator.
 

Methods in net.sf.beanlib.hibernate that return BeanPopulatorBaseSpi
 BeanPopulatorBaseSpi HibernateBeanReplicator.initBeanPopulatorBaseConfig(BeanPopulatorBaseConfig baseConfig)
          Used to conveniently provide the bean population related configuration options as a single configuration object.
 

Uses of BeanPopulatorBaseSpi in net.sf.beanlib.hibernate3
 

Classes in net.sf.beanlib.hibernate3 that implement BeanPopulatorBaseSpi
 class Hibernate3BeanReplicator
          Hibernate 3 Bean Replicator.
 class Hibernate3BeanTransformer
          A Hibernate 3 Bean Transformer is simply a BeanTransformer with the extended capabilities of handling Hibernate (v3.x) objects.
 

Uses of BeanPopulatorBaseSpi in net.sf.beanlib.provider
 

Classes in net.sf.beanlib.provider that implement BeanPopulatorBaseSpi
 class BeanPopulator
          Default implementation of BeanPopulatorSpi.
 class BeanTransformer
          Default implementation of BeanTransformerSpi.
 

Uses of BeanPopulatorBaseSpi in net.sf.beanlib.spi
 

Subinterfaces of BeanPopulatorBaseSpi in net.sf.beanlib.spi
 interface BeanPopulatorSpi
          Bean Populator SPI.
 interface BeanTransformerSpi
          Bean Transformer SPI.
 

Methods in net.sf.beanlib.spi that return BeanPopulatorBaseSpi
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initBeanPopulationExceptionHandler(BeanPopulationExceptionHandler beanPopulationExceptionHandler)
          Used to configure a handler to handle any exception thrown.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initBeanPopulatorBaseConfig(BeanPopulatorBaseConfig baseConfig)
          Used to conveniently provide all the other configuration options as a single configuration object.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initBeanSourceHandler(BeanSourceHandler beanSourceHandler)
          Used to configure a call-back (to produce whatever side-effects deemed necessary) that is invoked after the property value has been retrieved from the source bean, but before being propagated across to the target bean.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initDebug(boolean debug)
          Used to control whether debug messages should be logged.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initDetailedPropertyFilter(DetailedPropertyFilter detailedPropertyFilter)
          Used to configure a detailed prperty filter (which has more context information) to determine whether a specific property should be propagated from the source bean to the target bean.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initPropertyFilter(PropertyFilter propertyFilter)
          Used to configure a property filter to determine whether a specific property should be propagated from a source bean to a target bean.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initReaderMethodFinder(BeanMethodFinder readerMethodFinder)
          Used to configure a finder to find the property getter methods of a source JavaBean.
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
          Used to configure a collector to collect the property setter methods of a target JavaBean.