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

Packages that use PropertyFilter
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 PropertyFilter in net.sf.beanlib.hibernate
 

Classes in net.sf.beanlib.hibernate that implement PropertyFilter
 class HibernatePropertyFilter
          A default implementation used to determine if a Hibernate property that follows the JavaBean getter/setter convention should be propagated.
 

Fields in net.sf.beanlib.hibernate declared as PropertyFilter
private  PropertyFilter HibernatePropertyFilter.vetoer
          Used to veto the propagation of a property.
 

Methods in net.sf.beanlib.hibernate that return PropertyFilter
 PropertyFilter HibernateBeanReplicator.getPropertyFilter()
          Returns the property filter that is used to control what properties get propagated across and what get skipped.
 PropertyFilter HibernatePropertyFilter.getVetoer()
          Returns the vetoer configured for vetoing the propagation of a property.
 

Methods in net.sf.beanlib.hibernate with parameters of type PropertyFilter
 HibernateBeanReplicator HibernateBeanReplicator.initPropertyFilter(PropertyFilter propertyFilter)
          Note this method is only applicable if either the HibernateBeanReplicator.copy(Object) or HibernateBeanReplicator.copy(Object, Class) is directly invoked, and is ignored otherwise (ie ignored if deep or shallow copy is invoked instead).
 HibernatePropertyFilter HibernatePropertyFilter.withVetoer(PropertyFilter vetoer)
          Used to configure a vetoer for vetoing the propagation of a property.
 

Constructors in net.sf.beanlib.hibernate with parameters of type PropertyFilter
HibernatePropertyFilter(Set<Class<?>> entityBeanClassSet, Set<? extends CollectionPropertyName<?>> collectionPropertyNameSet, PropertyFilter vetoer)
          Constructs with the specified options of controlling what to be replicated and what not.
HibernatePropertyFilter(String applicationPackagePrefix, Set<Class<?>> entityBeanClassSet, Set<? extends CollectionPropertyName<?>> collectionPropertyNameSet, PropertyFilter vetoer)
          Constructs with the specified options of controlling what to be replicated and what not.
 

Uses of PropertyFilter in net.sf.beanlib.hibernate3
 

Constructors in net.sf.beanlib.hibernate3 with parameters of type PropertyFilter
Hibernate3BeanReplicator(Set<Class<?>> entityBeanClassSet, Set<? extends CollectionPropertyName<?>> collectionPropertyNameSet, PropertyFilter vetoer)
          Convenient constructor to specify: The set of entity bean classes for matching properties that will be replicated; The set of collection and map properties that will be replicated; A vetoer used to veto the propagation of specific properties
Hibernate3BeanReplicator(String applicationPackagePrefix, Set<Class<?>> entityBeanClassSet, Set<? extends CollectionPropertyName<?>> collectionPropertyNameSet, PropertyFilter vetoer)
          Convenient constructor to specify: An application package prefix used to determine if a property with a type of an entity bean class will be included for replication; The set of entity bean classes for matching properties that will be replicated; The set of collection and map properties that will be replicated; A vetoer used to veto the propagation of specific properties
 

Uses of PropertyFilter in net.sf.beanlib.provider
 

Methods in net.sf.beanlib.provider that return PropertyFilter
 PropertyFilter BeanTransformer.getPropertyFilter()
           
 PropertyFilter BeanPopulator.getPropertyFilter()
           
 

Methods in net.sf.beanlib.provider with parameters of type PropertyFilter
 BeanTransformer BeanTransformer.initPropertyFilter(PropertyFilter propertyFilter)
           
 BeanPopulator BeanPopulator.initPropertyFilter(PropertyFilter propertyFilter)
           
 

Uses of PropertyFilter in net.sf.beanlib.spi
 

Fields in net.sf.beanlib.spi declared as PropertyFilter
private  PropertyFilter BeanPopulatorBaseConfig.propertyFilter
           
 

Methods in net.sf.beanlib.spi that return PropertyFilter
 PropertyFilter BeanPopulatorBaseSpi.getPropertyFilter()
          Returns the property filter configured.
 PropertyFilter BeanPopulatorBaseConfig.getPropertyFilter()
           
 

Methods in net.sf.beanlib.spi with parameters of type PropertyFilter
 BeanTransformerSpi BeanTransformerSpi.initPropertyFilter(PropertyFilter propertyFilter)
           
 BeanPopulatorSpi BeanPopulatorSpi.initPropertyFilter(PropertyFilter propertyFilter)
           
 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.
 void BeanPopulatorBaseConfig.setPropertyFilter(PropertyFilter propertyFilter)