Uses of Interface
org.hibernate.property.Setter

Packages that use Setter
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. 
 

Uses of Setter in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return Setter
 Setter Property.getSetter(Class clazz)
           
 

Uses of Setter in org.hibernate.property
 

Classes in org.hibernate.property that implement Setter
static class BackrefPropertyAccessor.BackrefSetter
          The Setter implementation for id backrefs.
static class BasicPropertyAccessor.BasicSetter
           
static class DirectPropertyAccessor.DirectSetter
           
static class Dom4jAccessor.AttributeSetter
          For nodes like "@bar"
static class Dom4jAccessor.Dom4jSetter
           
static class Dom4jAccessor.ElementAttributeSetter
          For nodes like "foo/@bar"
static class Dom4jAccessor.ElementSetter
          For nodes like "foo"
static class Dom4jAccessor.TextSetter
          For nodes like "."
static class EmbeddedPropertyAccessor.EmbeddedSetter
           
static class IndexPropertyAccessor.IndexSetter
          The Setter implementation for index backrefs.
static class MapAccessor.MapSetter
           
 

Methods in org.hibernate.property that return Setter
 Setter PropertyAccessor.getSetter(Class theClass, String propertyName)
          Create a "setter" for the named attribute
 Setter NoopAccessor.getSetter(Class arg0, String arg1)
           
 Setter MapAccessor.getSetter(Class theClass, String propertyName)
           
 Setter IndexPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 Setter EmbeddedPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 Setter Dom4jAccessor.getSetter(Class theClass, String propertyName)
          Create a "setter" for the named attribute
 Setter DirectPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 Setter ChainedPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 Setter BasicPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 Setter BackrefPropertyAccessor.getSetter(Class theClass, String propertyName)
           
 

Uses of Setter in org.hibernate.tuple
 

Fields in org.hibernate.tuple declared as Setter
protected  Setter[] AbstractEntityTuplizer.setters
           
protected  Setter[] AbstractComponentTuplizer.setters
           
 

Methods in org.hibernate.tuple that return Setter
protected  Setter PojoEntityTuplizer.buildPropertySetter(Property mappedProperty, PersistentClass mappedEntity)
           
protected  Setter PojoComponentTuplizer.buildSetter(Component component, Property prop)
           
protected  Setter DynamicMapEntityTuplizer.buildPropertySetter(Property mappedProperty, PersistentClass mappedEntity)
           
protected  Setter DynamicMapComponentTuplizer.buildSetter(Component component, Property prop)
           
protected  Setter Dom4jEntityTuplizer.buildPropertySetter(Property mappedProperty, PersistentClass mappedEntity)
           
protected  Setter Dom4jComponentTuplizer.buildSetter(Component component, Property prop)
           
protected abstract  Setter AbstractEntityTuplizer.buildPropertySetter(Property mappedProperty, PersistentClass mappedEntity)
          Build an appropriate Setter for the given property.
protected abstract  Setter AbstractComponentTuplizer.buildSetter(Component component, Property prop)
           
 

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