Save This Page
Home » hibernate-distribution-3.3.1.GA-dist » org.hibernate » tuple » [javadoc | source]
org.hibernate.tuple
public class: PropertyFactory [javadoc | source]
java.lang.Object
   org.hibernate.tuple.PropertyFactory
Responsible for generation of runtime metamodel Property representations. Makes distinction between identifier, version, and other (standard) properties.
Method from org.hibernate.tuple.PropertyFactory Summary:
buildIdentifierProperty,   buildStandardProperty,   buildVersionProperty
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.tuple.PropertyFactory Detail:
 public static IdentifierProperty buildIdentifierProperty(PersistentClass mappedEntity,
    IdentifierGenerator generator) 
    Generates an IdentifierProperty representation of the for a given entity mapping.
 public static StandardProperty buildStandardProperty(Property property,
    boolean lazyAvailable) 
    Generate a "standard" (i.e., non-identifier and non-version) based on the given mapped property.
 public static VersionProperty buildVersionProperty(Property property,
    boolean lazyAvailable) 
    Generates a VersionProperty representation for an entity mapping given its version mapping Property.