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

Packages that use MappingFileRef
org.eclipse.jpt.core   
org.eclipse.jpt.core.context   
org.eclipse.jpt.core.context.orm   
org.eclipse.jpt.core.context.persistence   
 

Uses of MappingFileRef in org.eclipse.jpt.core
 

Methods in org.eclipse.jpt.core that return MappingFileRef
 MappingFileRef JpaFactory.buildImpliedMappingFileRef(PersistenceUnit parent)
          Build a "implied" mapping file ref.
 MappingFileRef JpaFactory.buildMappingFileRef(PersistenceUnit parent, XmlMappingFileRef xmlMappingFileRef)
          Build a "specified" mapping file ref.
 

Methods in org.eclipse.jpt.core with parameters of type MappingFileRef
 MappingFile JpaFactory.buildMappingFile(MappingFileRef parent, JpaXmlResource resource)
           
 MappingFile JpaPlatform.buildMappingFile(MappingFileRef parent, JpaXmlResource resource)
           
 

Uses of MappingFileRef in org.eclipse.jpt.core.context
 

Methods in org.eclipse.jpt.core.context with parameters of type MappingFileRef
 MappingFile MappingFileProvider.buildMappingFile(MappingFileRef parent, JpaXmlResource resource, JpaFactory factory)
          Build a mapping with the specified parent and resource.
 

Uses of MappingFileRef in org.eclipse.jpt.core.context.orm
 

Methods in org.eclipse.jpt.core.context.orm that return MappingFileRef
 MappingFileRef OrmXml.getParent()
          covariant override
 

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

Methods in org.eclipse.jpt.core.context.persistence that return MappingFileRef
 MappingFileRef PersistenceUnit.addSpecifiedMappingFileRef()
          Add a new specified mapping file ref to the persistence unit; return the newly-created mapping file ref.
 MappingFileRef PersistenceUnit.addSpecifiedMappingFileRef(int index)
          Add a new specified mapping file ref to the persistence unit at the specified index; return the newly-created mapping file ref.
 MappingFileRef PersistenceUnit.getImpliedMappingFileRef()
          Return the persistence unit's implied mapping file ref.
 

Methods in org.eclipse.jpt.core.context.persistence that return types with arguments of type MappingFileRef
 java.util.ListIterator<MappingFileRef> PersistenceUnit.mappingFileRefs()
          Return the persistence unit's list of mapping file refs, both specified and implied.
 java.util.Iterator<MappingFileRef> PersistenceUnit.mappingFileRefsContaining(java.lang.String typeName)
          Return all the mapping file refs, both specified and implied, containing the specified type.
 java.util.ListIterator<MappingFileRef> PersistenceUnit.specifiedMappingFileRefs()
          Return the persistence unit's list of specified mapping file refs.
 

Methods in org.eclipse.jpt.core.context.persistence with parameters of type MappingFileRef
 void PersistenceUnit.removeSpecifiedMappingFileRef(MappingFileRef mappingFileRef)
          Remove the specified mapping file ref from the persistence unit.