Uses of Class
com.bm.introspectors.Property

Packages that use Property
com.bm.datagen   
com.bm.datagen.utils   
com.bm.introspectors   
com.bm.introspectors.relations   
com.bm.utils   
 

Uses of Property in com.bm.datagen
 

Methods in com.bm.datagen with parameters of type Property
<T> java.lang.Object
DataGenerator.getNextValue(Property property, Introspector<T> introspector, java.lang.Object instance)
          Return the value form the generator.
 

Uses of Property in com.bm.datagen.utils
 

Methods in com.bm.datagen.utils with parameters of type Property
protected  T BaseUniqueValueGenerator.getUniqueValueForEachPkField(Property forProperty, Introspector<? extends java.lang.Object> introspector)
          Generates a unique value for each field (if the field is a PK field)
 void GeneratorDependencyInjector.setProperty(Property property)
          The property to inject.
 

Uses of Property in com.bm.introspectors
 

Fields in com.bm.introspectors with type parameters of type Property
protected  java.util.Map<Property,PersistentPropertyInfo> AbstractPersistentClassIntrospector.fieldInfo
          holds the meta information for persistent fields *
protected  java.util.Map<Property,PrimaryKeyInfo> AbstractPersistentClassIntrospector.pkFieldInfo
          holds the meta information for primary key fields *
 

Methods in com.bm.introspectors that return Property
 Property EmbeddedClassIntrospector.getAttibuteName()
          Returns the filed/gett/setter Name of the source class.
 Property IIntrospector.getEntityManagerField()
          Returns the field, which holds the reference to the entity manager.
 Property AbstractIntrospector.getEntityManagerField()
          Returns the field, which holds the reference to the entity manager.
 

Methods in com.bm.introspectors that return types with arguments of type Property
 java.util.Set<Property> IIntrospector.getFieldsToInject()
          Returns the fieldsToInject.
 java.util.Set<Property> AbstractIntrospector.getFieldsToInject()
          Returns the fieldsToInject.
 java.util.List<Property> Introspector.getPersitentProperties()
          Returns the persistent fields.
 java.util.List<Property> AbstractPersistentClassIntrospector.getPersitentProperties()
          Returns the persistent fields.
 java.util.Set<Property> Introspector.getPkFields()
          Return the primary key fields.
 java.util.Set<Property> AbstractPersistentClassIntrospector.getPkFields()
          Return the primary key fields.
 java.util.List<Property> AbstractPersistentClassIntrospector.getTransientFields()
          Returns the transientFields.
 

Methods in com.bm.introspectors with parameters of type Property
 java.lang.annotation.Annotation IIntrospector.getAnnotationForField(Property field)
          Returns the annotationForField.
 java.lang.annotation.Annotation AbstractIntrospector.getAnnotationForField(Property field)
          Returns the annotationForField.
 java.lang.Object Introspector.getField(T instance, Property toGet)
          Returns a value of an field.
 java.lang.Object AbstractPersistentClassIntrospector.getField(T instance, Property toGet)
          Returns a value of an field.
 PersistentPropertyInfo Introspector.getPresistentFieldInfo(Property toCheck)
          This method returns informations about a peristent field.
 PersistentPropertyInfo AbstractPersistentClassIntrospector.getPresistentFieldInfo(Property toCheck)
          This method returns informations about a persistent field.
 PrimaryKeyInfo Introspector.getPrimaryKeyInfo(Property toCheck)
          This method returns informations about a primary key field.
 PrimaryKeyInfo AbstractPersistentClassIntrospector.getPrimaryKeyInfo(Property toCheck)
          This method returns informations about a persistent field.
 void Introspector.setField(T instance, Property toSet, java.lang.Object value)
          Sets a value of an field.
 void AbstractPersistentClassIntrospector.setField(T instance, Property toSet, java.lang.Object value)
          Sets a value of the field.
 

Constructors in com.bm.introspectors with parameters of type Property
EmbeddedClassIntrospector(Property toInspect)
          Constructor with the class to inspect.
 

Uses of Property in com.bm.introspectors.relations
 

Methods in com.bm.introspectors.relations that return Property
static Property RelationPropertyResolver.findAttributeForRelationAtOtherSide(java.lang.Class<java.lang.Object> declaredInClass, java.lang.String mappedBy)
          Search the attribute representing the releation on the !other side!
static Property RelationPropertyResolver.findAttributeForRelationAtOtherSide(Property aktProperty)
          Search the attribute representing the relation on the !other side!
 Property GlobalRelationStore.getProperty(java.lang.Class forClass, java.lang.Class forType)
          Returns the releation properties for special class (entity bean).
 Property GlobalRelationStore.getProperty(java.lang.Class forClass, java.lang.String propertyName)
          Returns the property based on the class and the name.
 Property AbstractRelation.getSourceProperty()
          Returns the sourceProperty.
 Property AbstractRelation.getTargetProperty()
          Returns the targetProperty.
 

Methods in com.bm.introspectors.relations that return types with arguments of type Property
 java.util.Set<Property> GlobalPrimaryKeyStore.getPrimaryKeyInfo(java.lang.Class entityClass)
          Retrieves primary key info.
 java.util.Set<Property> ManyToOneReleation.getTargetKeyProperty()
          Returns the primary key properties of the target class
 java.util.Set<Property> EntityReleationInfo.getTargetKeyProperty()
          Returns the primary key property (or properties, in case of a composite key) for the class that is target of the relation
 java.util.Set<Property> AbstractRelation.getTargetKeyProperty()
          Returns the primary key property (or properties, in case of a composite key) for the class that is target of the relation
 

Methods in com.bm.introspectors.relations with parameters of type Property
static Property RelationPropertyResolver.findAttributeForRelationAtOtherSide(Property aktProperty)
          Search the attribute representing the relation on the !other side!
 void GlobalRelationStore.put(java.lang.Class forClass, Property toSave)
          Save a property wich represents a relation in a class (bean).
 

Method parameters in com.bm.introspectors.relations with type arguments of type Property
 void GlobalPrimaryKeyStore.put(java.lang.Class entityClass, java.util.Map<Property,PrimaryKeyInfo> pkFieldInfo)
          Stores primary key info of a given entity class.
 void ManyToOneReleation.setTargetKeyProperty(java.util.Set<Property> targetKeyProp)
          Sets the primary key properties of the target class
 

Constructors in com.bm.introspectors.relations with parameters of type Property
AbstractRelation(java.lang.Class sourceClass, java.lang.Class targetClass, Property sourceProperty, Property targetProperty, javax.persistence.FetchType fetchType, javax.persistence.CascadeType[] cascadeType)
          Default constructor.
ManyToOneReleation(java.lang.Class sourceClass, java.lang.Class targetClass, Property sourceProperty, Property targetProperty, javax.persistence.ManyToOne annotation)
          Default constructor.
OneToManyReleation(java.lang.Class sourceClass, java.lang.Class targetClass, Property sourceProperty, Property targetProperty, javax.persistence.OneToMany annotation)
          Default constructor.
 

Uses of Property in com.bm.utils
 

Methods in com.bm.utils with parameters of type Property
static java.lang.Class Ejb3Utils.getNonPrimitiveType(Property aktField)
          This method will do the transformation of primitive types if necessary.
static java.util.Collection Ejb3Utils.getRightCollectionType(Property forProperty)
          Returns the right collection type for the given property.
 

Constructor parameters in com.bm.utils with type arguments of type Property
IdClassInstanceGen(java.util.Set<Property> idFields, java.lang.Class<?> idClass, java.lang.Object entityBean)
           
 



Copyright © 2008. All Rights Reserved.