站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

Uses of Class net.sf.hibernate.mapping.PersistentClass (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Class
net.sf.hibernate.mapping.PersistentClass

Packages that use PersistentClass
net.sf.hibernate.cfg   
net.sf.hibernate.mapping   
net.sf.hibernate.persister   
 

Uses of PersistentClass in net.sf.hibernate.cfg
 

Methods in net.sf.hibernate.cfg that return PersistentClass
 PersistentClass Mappings.getClass(Class clazz)
           
 PersistentClass Configuration.getClassMapping(Class persistentClass)
          Get the mapping for a particular class
 

Methods in net.sf.hibernate.cfg with parameters of type PersistentClass
 void Mappings.addClass(PersistentClass persistentClass)
           
 

Uses of PersistentClass in net.sf.hibernate.mapping
 

Subclasses of PersistentClass in net.sf.hibernate.mapping
 class RootClass
          The root class of a table-per-subclass, or table-per-concrete-class inheritance hierarchy.
 class Subclass
          A sublass in a table-per-subclass, or table-per-concrete-class inheritance hierarchy.
 

Methods in net.sf.hibernate.mapping that return PersistentClass
 PersistentClass Subclass.getSuperclass()
           
 PersistentClass RootClass.getSuperclass()
           
abstract  PersistentClass PersistentClass.getSuperclass()
           
 PersistentClass OneToMany.getAssociatedClass()
           
 PersistentClass Component.getOwner()
          Returns the owner.
 PersistentClass Collection.getOwner()
          Returns the owner.
 

Methods in net.sf.hibernate.mapping with parameters of type PersistentClass
 void Subclass.setSuperclass(PersistentClass superclass)
           
 void OneToMany.setAssociatedClass(PersistentClass associatedClass)
           
 void Component.setOwner(PersistentClass owner)
          Sets the owner.
 void Collection.setOwner(PersistentClass owner)
          Sets the owner.
 

Constructors in net.sf.hibernate.mapping with parameters of type PersistentClass
Subclass(PersistentClass superclass)
           
Set(PersistentClass owner)
          Constructor for Set.
PrimitiveArray(PersistentClass owner)
           
OneToMany(PersistentClass owner)
           
Map(PersistentClass owner)
           
List(PersistentClass owner)
           
IndexedCollection(PersistentClass owner)
          Constructor for IndexedCollection.
IdentifierCollection(PersistentClass owner)
           
IdentifierBag(PersistentClass owner)
           
Component(PersistentClass owner)
           
Collection(PersistentClass owner)
           
Bag(PersistentClass owner)
           
Array(PersistentClass owner)
          Constructor for Array.
 

Uses of PersistentClass in net.sf.hibernate.persister
 

Methods in net.sf.hibernate.persister with parameters of type PersistentClass
static ClassPersister PersisterFactory.createClassPersister(PersistentClass model, SessionFactoryImplementor factory)
           
protected  void AbstractEntityPersister.initSubclassPropertyAliasesMap(PersistentClass model)
          Must be called by subclasses, at the end of their constructors
 

Constructors in net.sf.hibernate.persister with parameters of type PersistentClass
NormalizedEntityPersister(PersistentClass model, SessionFactoryImplementor factory)
           
EntityPersister(PersistentClass model, SessionFactoryImplementor factory)
           
AbstractEntityPersister(PersistentClass model, SessionFactoryImplementor factory)