Uses of Class
net.sf.beanlib.CollectionPropertyName

Packages that use CollectionPropertyName
net.sf.beanlib Java Bean Populator,Setter, Getter, etc. 
net.sf.beanlib.hibernate JavaBean Library for Hibernate (Common code base) 
net.sf.beanlib.hibernate3 JavaBean Library for Hibernate 3.x 
 

Uses of CollectionPropertyName in net.sf.beanlib
 

Fields in net.sf.beanlib declared as CollectionPropertyName
static CollectionPropertyName<?>[] CollectionPropertyName.EMPTY_ARRAY
           
 

Methods in net.sf.beanlib that return CollectionPropertyName
static
<T> CollectionPropertyName<T>[]
CollectionPropertyName.createCollectionPropertyNames(Class<T> declaringClass, String[] collectionProperties)
          Convenient factory method.
 

Uses of CollectionPropertyName in net.sf.beanlib.hibernate
 

Fields in net.sf.beanlib.hibernate with type parameters of type CollectionPropertyName
private  Set<? extends CollectionPropertyName<?>> HibernatePropertyFilter.collectionPropertyNameSet
          The set of collection and map properties that will be replicated, eagerly fetching if necessary.
 

Methods in net.sf.beanlib.hibernate that return types with arguments of type CollectionPropertyName
 Set<CollectionPropertyName<?>> HibernatePropertyFilter.getCollectionPropertyNameSet()
          Returns the configured set of collection and map properties that are to be replicated, eagerly fetching if necessary; null if all collection and map properties are to be replicated; or empty if no collection nor map properties are to be replicated.
 

Method parameters in net.sf.beanlib.hibernate with type arguments of type CollectionPropertyName
 HibernatePropertyFilter HibernatePropertyFilter.withCollectionPropertyNameSet(Set<? extends CollectionPropertyName<?>> collectionPropertyNameSet)
          Used to configure the set of collection and map properties that will be replicated, eagerly fetching if necessary.
 

Constructor parameters in net.sf.beanlib.hibernate with type arguments of type CollectionPropertyName
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 CollectionPropertyName in net.sf.beanlib.hibernate3
 

Methods in net.sf.beanlib.hibernate3 with parameters of type CollectionPropertyName
private
<E> E
Hibernate3DtoCopier.copy(Class<E> targetEntityType, Object from, Class<?>[] interestedEntityTypes, CollectionPropertyName<?>[] collectionPropertyNames)
          Returns a DTO of the specified target entity type by partially cloning the object graph of the given Hibernate "from" instance that follows the JavaBean getter/setter convention on a best attempt basis, including only those properties that are explicitly specified, or implied by the application package prefix.
<E> List<E>
Hibernate3DtoCopier.hibernate2dto(Class<E> targetEntityType, Collection<?> hibernateBeans, Class<?>[] interestedEntityTypes, CollectionPropertyName<?>[] collectionPropertyNames)
          Returns a list of DTO's of the specified target entity type by partially cloning the object graphs of the given collection of Hibernate entity beans that follows the JavaBean getter/setter convention on a best attempt basis, including only those properties that are explicitly specified, or implied by the application package prefix.
<E,T> E
Hibernate3DtoCopier.hibernate2dto(Class<E> targetEntityType, T from, Class<?>[] interestedEntityTypes, CollectionPropertyName<?>[] collectionPropertyNames)
          Returns a DTO of the specified target entity type by partially cloning the object graphs of the given Hibernate "from" instance that follows the JavaBean getter/setter convention on a best attempt basis, including only those properties that are explicitly specified, or implied by the application package prefix.
<T> T
Hibernate3DtoCopier.hibernate2dto(T from, Class<?>[] interestedEntityTypes, CollectionPropertyName<?>[] collectionPropertyNames)
          Returns a DTO by partially cloning the object graph of the given Hibernate "from" instance that follows the JavaBean getter/setter convention on a best attempt basis, including only those properties that are explicitly specified, or implied by the application package prefix.
 

Constructor parameters in net.sf.beanlib.hibernate3 with type arguments of type CollectionPropertyName
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