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

Packages that use BeanMethodCollector
net.sf.beanlib.hibernate JavaBean Library for Hibernate (Common code base) 
net.sf.beanlib.jaxb2 JAXB 2 support for Beanlib 
net.sf.beanlib.provider Beanlib Servce Provider Implementations 
net.sf.beanlib.provider.collector Collector Servce Provider Implementations 
net.sf.beanlib.spi Beanlib Servce Provider Interface 
 

Uses of BeanMethodCollector in net.sf.beanlib.hibernate
 

Methods in net.sf.beanlib.hibernate that return BeanMethodCollector
 BeanMethodCollector HibernateBeanReplicator.getSetterMethodCollector()
           
 

Methods in net.sf.beanlib.hibernate with parameters of type BeanMethodCollector
 HibernateBeanReplicator HibernateBeanReplicator.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
          Used to configure a collector to collect the property setter methods of a target JavaBean.
 

Uses of BeanMethodCollector in net.sf.beanlib.jaxb2
 

Classes in net.sf.beanlib.jaxb2 that implement BeanMethodCollector
 class FluentSetterMethodCollector
          Supports collecting Jaxb 2 fluent api setter methods.
 

Uses of BeanMethodCollector in net.sf.beanlib.provider
 

Methods in net.sf.beanlib.provider that return BeanMethodCollector
 BeanMethodCollector BeanTransformer.getSetterMethodCollector()
           
 BeanMethodCollector BeanPopulator.getSetterMethodCollector()
           
 

Methods in net.sf.beanlib.provider with parameters of type BeanMethodCollector
 BeanTransformer BeanTransformer.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
           
 BeanPopulator BeanPopulator.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
           
 

Uses of BeanMethodCollector in net.sf.beanlib.provider.collector
 

Classes in net.sf.beanlib.provider.collector that implement BeanMethodCollector
 class OrderedMethodCollector
          Supports collecting JavaBean public setter methods.
 class PrivateSetterMethodCollector
          Supports collecting JavaBean setter methods, both public, protected and private.
 class ProtectedSetterMethodCollector
          Supports collecting JavaBean setter methods, both public and protected.
 class PublicSetterCollectionLastMethodCollector
          Supports collecting JavaBean public setter methods.
 class PublicSetterMethodCollector
          Supports collecting JavaBean public setter methods.
 

Fields in net.sf.beanlib.provider.collector declared as BeanMethodCollector
private  BeanMethodCollector OrderedMethodCollector.beanMethodCollector
           
private  BeanMethodCollector PublicSetterCollectionLastMethodCollector.publicSetterMethodCollector
           
 

Constructors in net.sf.beanlib.provider.collector with parameters of type BeanMethodCollector
OrderedMethodCollector(BeanMethodCollector beanMethodCollector)
           
 

Uses of BeanMethodCollector in net.sf.beanlib.spi
 

Fields in net.sf.beanlib.spi declared as BeanMethodCollector
private  BeanMethodCollector BeanPopulatorBaseConfig.setterMethodCollector
           
 

Methods in net.sf.beanlib.spi that return BeanMethodCollector
 BeanMethodCollector BeanPopulatorBaseSpi.getSetterMethodCollector()
          Returns the collector configured to collect the property setter methods of a target JavaBean.
 BeanMethodCollector BeanPopulatorBaseConfig.getSetterMethodCollector()
           
 

Methods in net.sf.beanlib.spi with parameters of type BeanMethodCollector
 BeanTransformerSpi BeanTransformerSpi.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
           
 BeanPopulatorSpi BeanPopulatorSpi.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
           
 BeanPopulatorBaseSpi BeanPopulatorBaseSpi.initSetterMethodCollector(BeanMethodCollector setterMethodCollector)
          Used to configure a collector to collect the property setter methods of a target JavaBean.
 void BeanPopulatorBaseConfig.setSetterMethodCollector(BeanMethodCollector setterMethodCollector)