Uses of Interface
org.hibernate.property.Getter

Packages that use Getter
org.hibernate.engine.internal   
org.hibernate.envers.strategy   
org.hibernate.envers.tools.reflection   
org.hibernate.internal.util Internal utility classes. 
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
org.hibernate.property This package abstracts the notion of a "property" of an entity. 
org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. 
org.hibernate.tuple.component   
org.hibernate.tuple.entity   
 

Uses of Getter in org.hibernate.engine.internal
 

Methods in org.hibernate.engine.internal with parameters of type Getter
static IdentifierValue UnsavedValueFactory.getUnsavedIdentifierValue(String unsavedValue, Getter identifierGetter, Type identifierType, Constructor constructor)
          Return an IdentifierValue for the specified unsaved-value.
static VersionValue UnsavedValueFactory.getUnsavedVersionValue(String versionUnsavedValue, Getter versionGetter, VersionType versionType, Constructor constructor)
           
 

Uses of Getter in org.hibernate.envers.strategy
 

Methods in org.hibernate.envers.strategy with parameters of type Getter
 void ValidityAuditStrategy.setRevisionTimestampGetter(Getter revisionTimestampGetter)
           
 

Uses of Getter in org.hibernate.envers.tools.reflection
 

Methods in org.hibernate.envers.tools.reflection that return Getter
static Getter ReflectionTools.getGetter(Class cls, PropertyData propertyData)
           
static Getter ReflectionTools.getGetter(Class cls, String propertyName, String accessorType)
           
 

Uses of Getter in org.hibernate.internal.util
 

Methods in org.hibernate.internal.util that return Getter
static Getter ReflectHelper.getGetter(Class theClass, String name)
          Directly retrieve the Getter reference via the BasicPropertyAccessor.
 

Uses of Getter in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return Getter
 Getter Property.getGetter(Class clazz)
           
 

Uses of Getter in org.hibernate.property
 

Classes in org.hibernate.property that implement Getter
 class BackrefPropertyAccessor.BackrefGetter
          Internal implementation of a property getter specific to these back-ref properties.
static class BasicPropertyAccessor.BasicGetter
           
static class DirectPropertyAccessor.DirectGetter
           
static class EmbeddedPropertyAccessor.EmbeddedGetter
           
 class IndexPropertyAccessor.IndexGetter
          The Getter implementation for index backrefs.
static class MapAccessor.MapGetter
           
 

Methods in org.hibernate.property that return Getter
static Getter BasicPropertyAccessor.createGetter(Class theClass, String propertyName)
           
 Getter EmbeddedPropertyAccessor.getGetter(Class theClass, String propertyName)
           
 Getter NoopAccessor.getGetter(Class arg0, String arg1)
          Create a "getter" for the named attribute
 Getter BackrefPropertyAccessor.getGetter(Class theClass, String propertyName)
          Create a "getter" for the named attribute
 Getter PropertyAccessor.getGetter(Class theClass, String propertyName)
          Create a "getter" for the named attribute
 Getter IndexPropertyAccessor.getGetter(Class theClass, String propertyName)
           
 Getter BasicPropertyAccessor.getGetter(Class theClass, String propertyName)
           
 Getter ChainedPropertyAccessor.getGetter(Class theClass, String propertyName)
           
 Getter DirectPropertyAccessor.getGetter(Class theClass, String propertyName)
           
 Getter MapAccessor.getGetter(Class theClass, String propertyName)
          Create a "getter" for the named attribute
 

Uses of Getter in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return Getter
 Getter Tuplizer.getGetter(int i)
          Retrieve the getter for the specified property.
 

Uses of Getter in org.hibernate.tuple.component
 

Fields in org.hibernate.tuple.component declared as Getter
protected  Getter[] AbstractComponentTuplizer.getters
           
 

Methods in org.hibernate.tuple.component that return Getter
protected  Getter PojoComponentTuplizer.buildGetter(Component component, Property prop)
           
protected abstract  Getter AbstractComponentTuplizer.buildGetter(Component component, Property prop)
           
protected  Getter DynamicMapComponentTuplizer.buildGetter(Component component, Property prop)
           
 Getter AbstractComponentTuplizer.getGetter(int i)
           
 

Uses of Getter in org.hibernate.tuple.entity
 

Fields in org.hibernate.tuple.entity declared as Getter
protected  Getter[] AbstractEntityTuplizer.getters
           
 

Methods in org.hibernate.tuple.entity that return Getter
protected abstract  Getter AbstractEntityTuplizer.buildPropertyGetter(AttributeBinding mappedProperty)
          Build an appropriate Getter for the given property.
protected  Getter DynamicMapEntityTuplizer.buildPropertyGetter(AttributeBinding mappedProperty)
          Build an appropriate Getter for the given property.
protected  Getter PojoEntityTuplizer.buildPropertyGetter(AttributeBinding mappedProperty)
          Build an appropriate Getter for the given property.
protected abstract  Getter AbstractEntityTuplizer.buildPropertyGetter(Property mappedProperty, PersistentClass mappedEntity)
          Build an appropriate Getter for the given property.
protected  Getter DynamicMapEntityTuplizer.buildPropertyGetter(Property mappedProperty, PersistentClass mappedEntity)
          Build an appropriate Getter for the given property.
protected  Getter PojoEntityTuplizer.buildPropertyGetter(Property mappedProperty, PersistentClass mappedEntity)
          Build an appropriate Getter for the given property.
 Getter AbstractEntityTuplizer.getGetter(int i)
           
 Getter EntityTuplizer.getIdentifierGetter()
          Retrieve the getter for the identifier property.
 Getter AbstractEntityTuplizer.getIdentifierGetter()
           
 Getter EntityTuplizer.getVersionGetter()
          Retrieve the getter for the version property.
 Getter AbstractEntityTuplizer.getVersionGetter()
           
 

Methods in org.hibernate.tuple.entity with parameters of type Getter
protected abstract  ProxyFactory AbstractEntityTuplizer.buildProxyFactory(EntityBinding mappingInfo, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected  ProxyFactory DynamicMapEntityTuplizer.buildProxyFactory(EntityBinding mappingInfo, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected  ProxyFactory PojoEntityTuplizer.buildProxyFactory(EntityBinding entityBinding, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected abstract  ProxyFactory AbstractEntityTuplizer.buildProxyFactory(PersistentClass mappingInfo, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected  ProxyFactory DynamicMapEntityTuplizer.buildProxyFactory(PersistentClass mappingInfo, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected  ProxyFactory PojoEntityTuplizer.buildProxyFactory(PersistentClass persistentClass, Getter idGetter, Setter idSetter)
          Build an appropriate ProxyFactory for the given mapped entity.
protected  ProxyFactory PojoEntityTuplizer.buildProxyFactoryInternal(EntityBinding entityBinding, Getter idGetter, Setter idSetter)
           
protected  ProxyFactory PojoEntityTuplizer.buildProxyFactoryInternal(PersistentClass persistentClass, Getter idGetter, Setter idSetter)
           
 



Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.