Uses of Interface
org.eclipse.jpt.jpa.core.context.persistence.ClassRef

Packages that use ClassRef
org.eclipse.jpt.jpa.core.context.persistence   
 

Uses of ClassRef in org.eclipse.jpt.jpa.core.context.persistence
 

Methods in org.eclipse.jpt.jpa.core.context.persistence that return ClassRef
 ClassRef PersistenceUnit.addSpecifiedClassRef(int index, java.lang.String className)
          Add a new specified class ref to the persistence unit at the specified index; return the newly-created class ref.
 ClassRef PersistenceUnit.addSpecifiedClassRef(java.lang.String className)
          Add a new specified class ref to the persistence unit; return the newly-created class ref.
 ClassRef PersistenceXmlContextNodeFactory.buildClassRef(PersistenceUnit parent, java.lang.String className)
          Build an "implied" class ref.
 ClassRef PersistenceXmlContextNodeFactory.buildClassRef(PersistenceUnit parent, XmlJavaClassRef xmlClassRef)
          Build a "specified" class ref.
 

Methods in org.eclipse.jpt.jpa.core.context.persistence that return types with arguments of type ClassRef
 java.util.Iterator<ClassRef> PersistenceUnit.classRefs()
          Return the persistence unit's list of class refs, both specified and implied.
 java.util.Iterator<ClassRef> PersistenceUnit.impliedClassRefs()
          Return the persistence unit's list of implied class refs.
 java.util.ListIterator<ClassRef> PersistenceUnit.specifiedClassRefs()
          Return the persistence unit's list of specified class refs.
 

Methods in org.eclipse.jpt.jpa.core.context.persistence with parameters of type ClassRef
 void PersistenceUnit.removeSpecifiedClassRef(ClassRef classRef)
          Remove the specified class ref from the persistence unit.