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

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

Uses of ClassRef in org.eclipse.jpt.core
 

Methods in org.eclipse.jpt.core that return ClassRef
 ClassRef JpaFactory.buildClassRef(PersistenceUnit parent, java.lang.String className)
          Build an "implied" class ref.
 ClassRef JpaFactory.buildClassRef(PersistenceUnit parent, XmlJavaClassRef xmlClassRef)
          Build a "specified" class ref.
 

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

Methods in org.eclipse.jpt.core.context.persistence that return ClassRef
 ClassRef PersistenceUnit.addSpecifiedClassRef()
          Add a new specified class ref to the persistence unit; return the newly-created class ref.
 ClassRef PersistenceUnit.addSpecifiedClassRef(int index)
          Add a new specified class ref to the persistence unit at the specified index; return the newly-created class ref.
 

Methods in org.eclipse.jpt.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.core.context.persistence with parameters of type ClassRef
 void PersistenceUnit.removeSpecifiedClassRef(ClassRef classRef)
          Remove the specified class ref from the persistence unit.