Uses of Interface
org.eclipse.jpt.core.context.AttributeMapping

Packages that use AttributeMapping
org.eclipse.jpt.core.context   
org.eclipse.jpt.core.context.java   
org.eclipse.jpt.core.context.orm   
org.eclipse.jpt.core.jpa2.context   
org.eclipse.jpt.core.jpa2.context.java   
org.eclipse.jpt.core.jpa2.context.orm   
org.eclipse.jpt.eclipselink.core.context   
org.eclipse.jpt.eclipselink.core.v2_0.context   
org.eclipse.jpt.ui   
org.eclipse.jpt.ui.details.java   
org.eclipse.jpt.ui.details.orm   
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.context
 interface BaseEmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface BasicMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface CollectionMapping
          1:m, m:m, element collection are all collection mappings.
 interface ColumnMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EmbeddedIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface Fetchable
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface IdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ManyToManyMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ManyToOneMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface MultiRelationshipMapping
          Multi-valued (1:m, m:m) relationship mapping.
 interface Nullable
          This interface is used for mappings that support the optional element.
 interface OneToManyMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OneToOneMapping
          One-to-one mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface RelationshipMapping
          Relationship (1:1, 1:m, m:1, m:m) mapping.
 interface SingleRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface TransientMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface VersionMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Methods in org.eclipse.jpt.core.context with type parameters of type AttributeMapping
<T extends AttributeMapping>
java.util.Iterator<T>
TypeMapping.attributeMappings()
          A convenience method for getting the attribute mappings from PersistentType.attributes()
<T extends AttributeMapping>
java.lang.Iterable<T>
TypeMapping.getAllAttributeMappings(java.lang.String mappingKey)
          Return attribute mappings of a particular mapping type that are declared anywhere on this type mapping's hierarchy
<T extends AttributeMapping>
java.lang.Iterable<T>
TypeMapping.getAttributeMappings(java.lang.String mappingKey)
          Return attribute mappings of a particular mapping type that are declared on this type mapping
 

Methods in org.eclipse.jpt.core.context that return AttributeMapping
 AttributeMapping PersistentAttribute.getMapping()
          Return the attribute's "specified" mapping, or if it is null return the attribute's "default" mapping.
 AttributeMapping Converter.getParent()
           
 AttributeMapping PersistentAttribute.getSpecifiedMapping()
          Return the attribute's "specified" mapping - could be null.
 AttributeMapping AttributeMapping.resolveAttributeMapping(java.lang.String name)
          Returns this attribute mapping if its name matches the name.
 AttributeMapping Entity.resolveAttributeMapping(java.lang.String name)
          Returns the attribute mapping that matches the name.
 

Methods in org.eclipse.jpt.core.context that return types with arguments of type AttributeMapping
 java.util.Iterator<AttributeMapping> TypeMapping.allAttributeMappings()
          Return all the attribute mappings in the type mapping's inheritance hierarchy.
 

Methods in org.eclipse.jpt.core.context with parameters of type AttributeMapping
 boolean AttributeMapping.isOwnedBy(AttributeMapping mapping)
          Return whether the given mapping manages a relationship with this mapping
 boolean OwnableRelationshipReference.mayBeMappedBy(AttributeMapping mapping)
          Validates whether the given mapping may own the relationship
 

Uses of AttributeMapping in org.eclipse.jpt.core.context.java
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.context.java
 interface JavaAttributeMapping
          Java attribute mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaBaseEmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaBasicMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaColumnMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaEmbeddedIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaEmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaManyToManyMapping
          The java representation of a ManyToManyMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaManyToOneMapping
          The java representation of a ManyToOneMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaMultiRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaOneToManyMapping
          The java representation of a OneToManyMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaOneToOneMapping
          The java representation of a OneToOneMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaSingleRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaTransientMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaVersionMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.context.orm
 interface OrmAttributeMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmBaseEmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmBasicMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmColumnMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmEmbeddedIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmEmbeddedMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmManyToManyMapping
          The orm.xml representation of a ManyToManyMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmManyToOneMapping
          The orm.xml representation of a ManyToOneMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmMultiRelationshipMapping
          ORM multi-valued (1:m, m:m) relationship mapping.
 interface OrmOneToManyMapping
          The orm.xml representation of a OneToManyMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmOneToOneMapping
          The orm.xml representation of a OneToOneMapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmSingleRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmTransientMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmVersionMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Uses of AttributeMapping in org.eclipse.jpt.core.jpa2.context
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.jpa2.context
 interface AttributeMapping2_0
          JPA 2.0 attribute mapping
 interface CollectionMapping2_0
          1:m, m:m, element collection are all collection mappings.
 interface ElementCollectionMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EmbeddedIdMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EmbeddedMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface IdMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ManyToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ManyToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OneToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OneToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface SingleRelationshipMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Methods in org.eclipse.jpt.core.jpa2.context that return AttributeMapping
 AttributeMapping MapsIdDerivedIdentityStrategy2_0.getResolvedAttributeMappingValue()
          Return a resolved attribute mapping, which may be a mapping on the entity, or a mapping within an embeddable mapping on the entity
 

Uses of AttributeMapping in org.eclipse.jpt.core.jpa2.context.java
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.jpa2.context.java
 interface JavaCollectionMapping2_0
          1:m, m:m, element collection are all collection mappings.
 interface JavaElementCollectionMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaEmbeddedMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaManyToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaManyToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaOneToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaOneToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaRelationshipMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaSingleRelationshipMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.core.jpa2.context.orm
 interface OrmCollectionMapping2_0
          1:m, m:m, element collection are all collection mappings.
 interface OrmElementCollectionMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmEmbeddedMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmManyToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmManyToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmOneToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmOneToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmSingleRelationshipMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Uses of AttributeMapping in org.eclipse.jpt.eclipselink.core.context
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.eclipselink.core.context
 interface EclipseLinkBasicCollectionMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkBasicMapMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkBasicMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkIdMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkOneToManyMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkOneToOneMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkRelationshipMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkTransformationMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkVariableOneToOneMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkVersionMapping
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Uses of AttributeMapping in org.eclipse.jpt.eclipselink.core.v2_0.context
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.eclipselink.core.v2_0.context
 interface EclipseLinkElementCollectionMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkOneToManyMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkOneToOneMapping2_0
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Uses of AttributeMapping in org.eclipse.jpt.ui
 

Methods in org.eclipse.jpt.ui that return types with arguments of type AttributeMapping
 java.util.Iterator<MappingUiDefinition<PersistentAttribute,? extends AttributeMapping>> MappingResourceUiDefinition.attributeMappingUiDefinitions()
          Return an iterator of attribute mapping ui definitions appropriate for this file type
 java.util.Iterator<MappingUiDefinition<PersistentAttribute,? extends AttributeMapping>> JpaPlatformUi.attributeMappingUiDefinitions(JpaResourceType resourceType)
           
 DefaultMappingUiDefinition<PersistentAttribute,? extends AttributeMapping> JpaPlatformUi.getDefaultAttributeMappingUiDefinition(JpaResourceType resourceType, java.lang.String mappingKey)
           
 DefaultMappingUiDefinition<PersistentAttribute,? extends AttributeMapping> MappingResourceUiDefinition.getDefaultAttributeMappingUiDefinition(java.lang.String key)
          Return a default attribute mapping ui definition for the given key or null
 

Method parameters in org.eclipse.jpt.ui with type arguments of type AttributeMapping
 JpaComposite JpaPlatformUi.buildAttributeMappingComposite(JpaResourceType resourceType, java.lang.String mappingKey, org.eclipse.swt.widgets.Composite parent, PropertyValueModel<AttributeMapping> mappingHolder, WidgetFactory widgetFactory)
           
 JpaComposite MappingResourceUiDefinition.buildAttributeMappingComposite(java.lang.String key, PropertyValueModel<AttributeMapping> mappingHolder, org.eclipse.swt.widgets.Composite parent, WidgetFactory widgetFactory)
           
 

Uses of AttributeMapping in org.eclipse.jpt.ui.details.java
 

Classes in org.eclipse.jpt.ui.details.java with type parameters of type AttributeMapping
 interface DefaultJavaAttributeMappingUiDefinition<T extends AttributeMapping>
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaAttributeMappingUiDefinition<T extends AttributeMapping>
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Uses of AttributeMapping in org.eclipse.jpt.ui.details.orm
 

Classes in org.eclipse.jpt.ui.details.orm with type parameters of type AttributeMapping
 interface OrmAttributeMappingUiDefinition<T extends AttributeMapping>
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.