Uses of Interface
org.eclipse.jpt.core.context.orm.OrmPersistentAttribute

Packages that use OrmPersistentAttribute
org.eclipse.jpt.core   
org.eclipse.jpt.core.context.orm   
 

Uses of OrmPersistentAttribute in org.eclipse.jpt.core
 

Methods in org.eclipse.jpt.core that return OrmPersistentAttribute
 OrmPersistentAttribute JpaFactory.buildOrmPersistentAttribute(OrmPersistentType parent, java.lang.String mappingKey)
           
 

Methods in org.eclipse.jpt.core with parameters of type OrmPersistentAttribute
 OrmBasicMapping JpaFactory.buildOrmBasicMapping(OrmPersistentAttribute parent)
           
 OrmEmbeddedIdMapping JpaFactory.buildOrmEmbeddedIdMapping(OrmPersistentAttribute parent)
           
 OrmEmbeddedMapping JpaFactory.buildOrmEmbeddedMapping(OrmPersistentAttribute parent)
           
 OrmIdMapping JpaFactory.buildOrmIdMapping(OrmPersistentAttribute parent)
           
 OrmManyToManyMapping JpaFactory.buildOrmManyToManyMapping(OrmPersistentAttribute parent)
           
 OrmManyToOneMapping JpaFactory.buildOrmManyToOneMapping(OrmPersistentAttribute parent)
           
 OrmAttributeMapping JpaFactory.buildOrmNullAttributeMapping(OrmPersistentAttribute parent)
           
 OrmOneToManyMapping JpaFactory.buildOrmOneToManyMapping(OrmPersistentAttribute parent)
           
 OrmOneToOneMapping JpaFactory.buildOrmOneToOneMapping(OrmPersistentAttribute parent)
           
 OrmTransientMapping JpaFactory.buildOrmTransientMapping(OrmPersistentAttribute parent)
           
 OrmVersionMapping JpaFactory.buildOrmVersionMapping(OrmPersistentAttribute parent)
           
 

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

Methods in org.eclipse.jpt.core.context.orm that return OrmPersistentAttribute
 OrmPersistentAttribute OrmPersistentType.addSpecifiedPersistentAttribute(java.lang.String mappingKey, java.lang.String attributeName)
           
 OrmPersistentAttribute OrmPersistentType.getAttributeNamed(java.lang.String attributeName)
          Overriden to return an OrmPersistentAttribute
 OrmPersistentAttribute OrmAttributeMapping.getPersistentAttribute()
           
 

Methods in org.eclipse.jpt.core.context.orm that return types with arguments of type OrmPersistentAttribute
 java.util.ListIterator<OrmPersistentAttribute> OrmPersistentType.attributes()
          Overriden to return OrmPersistentAttributes
 java.util.Iterator<OrmPersistentAttribute> OrmEmbeddable.overridableAssociations()
           
 java.util.Iterator<OrmPersistentAttribute> OrmEntity.overridableAssociations()
           
 java.util.Iterator<OrmPersistentAttribute> OrmMappedSuperclass.overridableAssociations()
           
 java.util.Iterator<OrmPersistentAttribute> OrmTypeMapping.overridableAssociations()
           
 java.util.Iterator<OrmPersistentAttribute> OrmEmbeddable.overridableAttributes()
           
 java.util.Iterator<OrmPersistentAttribute> OrmEntity.overridableAttributes()
           
 java.util.Iterator<OrmPersistentAttribute> OrmMappedSuperclass.overridableAttributes()
           
 java.util.Iterator<OrmPersistentAttribute> OrmTypeMapping.overridableAttributes()
           
 java.util.ListIterator<OrmPersistentAttribute> OrmPersistentType.specifiedAttributes()
          Return a read only iterator of the specified OrmPersistentAttributes.
 java.util.ListIterator<OrmPersistentAttribute> OrmPersistentType.virtualAttributes()
          Return a read only iterator of the virtual orm persistent attributes.
 

Methods in org.eclipse.jpt.core.context.orm with parameters of type OrmPersistentAttribute
 OrmAttributeMapping OrmAttributeMappingProvider.buildAttributeMapping(JpaFactory factory, OrmPersistentAttribute parent)
           
 void OrmPersistentType.changeMapping(OrmPersistentAttribute ormPersistentAttribute, OrmAttributeMapping oldMapping, OrmAttributeMapping newMapping)
           
 boolean OrmPersistentType.containsVirtualPersistentAttribute(OrmPersistentAttribute ormPersistentAttribute)
          Return whether this persistent type contains the given virtual persistent attribute.
 void OrmPersistentType.makePersistentAttributeSpecified(OrmPersistentAttribute ormPersistentAttribute)
          Add the given virtual orm persistent attribute to the orm.xml.
 void OrmPersistentType.makePersistentAttributeSpecified(OrmPersistentAttribute ormPersistentAttribute, java.lang.String mappingKey)
          Add the given virtual orm persistent attribute to the orm.xml with a mapping of type mappingKey.
 void OrmPersistentType.makePersistentAttributeVirtual(OrmPersistentAttribute ormPersistentAttribute)
          Remove the given specified orm persistent attribute from the orm.xml.
 void OrmPersistentType.removeSpecifiedPersistentAttribute(OrmPersistentAttribute ormPersistentAttribute)