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

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

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

Methods in org.eclipse.jpt.core.context.orm that return OrmPersistentAttribute
 OrmPersistentAttribute OrmPersistentType.addSpecifiedAttribute(java.lang.String mappingKey, java.lang.String attributeName)
           
 OrmPersistentAttribute OrmXmlContextNodeFactory.buildOrmPersistentAttribute(OrmPersistentType parent, OrmPersistentAttribute.Owner owner, XmlAttributeMapping resourceMapping)
           
 OrmPersistentAttribute OrmPersistentType.getAttributeNamed(java.lang.String attributeName)
           
 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()
           
 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 NullOrmAttributeMappingDefinition.buildContextMapping(OrmPersistentAttribute parent, XmlAttributeMapping resourceMapping, OrmXmlContextNodeFactory factory)
           
 OrmAttributeMapping OrmAttributeMappingDefinition.buildContextMapping(OrmPersistentAttribute parent, XmlAttributeMapping resourceMapping, OrmXmlContextNodeFactory factory)
          Build a context mapping
 OrmAttributeMapping UnsupportedOrmAttributeMappingDefinition.buildContextMapping(OrmPersistentAttribute parent, XmlAttributeMapping resourceMapping, OrmXmlContextNodeFactory factory)
           
 OrmBasicMapping OrmXmlContextNodeFactory.buildOrmBasicMapping(OrmPersistentAttribute parent, XmlBasic resourceMapping)
           
 OrmEmbeddedIdMapping OrmXmlContextNodeFactory.buildOrmEmbeddedIdMapping(OrmPersistentAttribute parent, XmlEmbeddedId resourceMapping)
           
 OrmEmbeddedMapping OrmXmlContextNodeFactory.buildOrmEmbeddedMapping(OrmPersistentAttribute parent, XmlEmbedded resourceMapping)
           
 OrmIdMapping OrmXmlContextNodeFactory.buildOrmIdMapping(OrmPersistentAttribute parent, XmlId resourceMapping)
           
 OrmManyToManyMapping OrmXmlContextNodeFactory.buildOrmManyToManyMapping(OrmPersistentAttribute parent, XmlManyToMany resourceMapping)
           
 OrmManyToOneMapping OrmXmlContextNodeFactory.buildOrmManyToOneMapping(OrmPersistentAttribute parent, XmlManyToOne resourceMapping)
           
 OrmAttributeMapping OrmXmlContextNodeFactory.buildOrmNullAttributeMapping(OrmPersistentAttribute parent, XmlNullAttributeMapping resourceMapping)
           
 OrmOneToManyMapping OrmXmlContextNodeFactory.buildOrmOneToManyMapping(OrmPersistentAttribute parent, XmlOneToMany resourceMapping)
           
 OrmOneToOneMapping OrmXmlContextNodeFactory.buildOrmOneToOneMapping(OrmPersistentAttribute parent, XmlOneToOne resourceMapping)
           
 OrmTransientMapping OrmXmlContextNodeFactory.buildOrmTransientMapping(OrmPersistentAttribute parent, XmlTransient resourceMapping)
           
 OrmVersionMapping OrmXmlContextNodeFactory.buildOrmVersionMapping(OrmPersistentAttribute parent, XmlVersion resourceMapping)
           
 OrmAttributeMapping OrmXmlContextNodeFactory.buildUnsupportedOrmAttributeMapping(OrmPersistentAttribute parent, XmlNullAttributeMapping resourceMapping)
           
 void OrmPersistentType.changeMapping(OrmPersistentAttribute ormPersistentAttribute, OrmAttributeMapping oldMapping, OrmAttributeMapping newMapping)
           
 boolean OrmPersistentType.containsVirtualAttribute(OrmPersistentAttribute ormPersistentAttribute)
          Return whether this persistent type contains the given virtual persistent attribute.
 JavaPersistentAttribute OrmPersistentAttribute.Owner.findJavaPersistentAttribute(OrmPersistentAttribute ormPersistentAttribute)
          Return the java persistent attribute that corresponds (same name and access type) to the given ormPersistentAttribute or null if none exists.
 void OrmPersistentType.makeAttributeSpecified(OrmPersistentAttribute ormPersistentAttribute)
          Add the given virtual orm persistent attribute to the orm.xml.
 void OrmPersistentType.makeAttributeSpecified(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.makeAttributeVirtual(OrmPersistentAttribute ormPersistentAttribute)
          Remove the given specified orm persistent attribute from the orm.xml.
 void OrmPersistentType.removeSpecifiedAttribute(OrmPersistentAttribute specifiedAttribute)
           
 

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

Subinterfaces of OrmPersistentAttribute in org.eclipse.jpt.core.jpa2.context.orm
 interface OrmPersistentAttribute2_0
          JPA 2.0 context orm persistent attribute (field or property)
 

Methods in org.eclipse.jpt.core.jpa2.context.orm with parameters of type OrmPersistentAttribute
 OrmElementCollectionMapping2_0 OrmXml2_0ContextNodeFactory.buildOrmElementCollectionMapping2_0(OrmPersistentAttribute parent, XmlElementCollection resourceMapping)