Dali Provisional API
Release 3.2

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

Packages that use AttributeMapping
org.eclipse.jpt.jpa.core.context   
org.eclipse.jpt.jpa.core.context.java   
org.eclipse.jpt.jpa.core.context.orm   
org.eclipse.jpt.jpa.core.jpa2.context   
org.eclipse.jpt.jpa.core.jpa2.context.java   
org.eclipse.jpt.jpa.core.jpa2.context.orm   
org.eclipse.jpt.jpa.core.jpql.spi   
org.eclipse.jpt.jpa.eclipselink.core.context   
org.eclipse.jpt.jpa.eclipselink.core.jpql.spi   
org.eclipse.jpt.jpa.ui   
 

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

Classes in org.eclipse.jpt.jpa.core.context with type parameters of type AttributeMapping
static interface Converter.ParentAdapter<M extends AttributeMapping>
          Interface allowing converters to be used in multiple places (e.g. basic mappings, collection mappings, etc).
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.core.context
 interface BaseEmbeddedMapping
          Behavior common to embedded and embedded ID mappings.
 interface BasicMapping
          JPA basic mapping.
 interface CollectionMapping
          JPA collection mapping (e.g. 1:m, m:m, element collection) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ColumnMapping
          JPA attribute mapping that has a converter (e.g. basic, ID, version).
 interface ConvertibleMapping
          JPA attribute mapping that has a converter (e.g. basic, ID, version).
 interface EmbeddedIdMapping
          JPA embedded ID 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 EmbeddedMapping
          JPA embedded 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 FetchableMapping
          JPA attribute mapping that has a fetch type (e.g. basic, relationship).
 interface GeneratedValueMapping
           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
          JPA ID 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 ManyToManyMapping
          JPA m:m 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 ManyToOneMapping
          JPA m:1 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 MultiRelationshipMapping
          Multi-valued relationship (1:m, m:m) mapping.
 interface OneToManyMapping
          JPA 1:m 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 OneToOneMapping
          JPA 1:1 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 OptionalMapping
          JPA attribute mapping that is optional (e.g. basic, single relationship).
 interface RelationshipMapping
          JPA relationship (1:1, 1:m, m:1, m:m) mapping.
 interface SingleRelationshipMapping
          JPA single relationship (m:1, 1:1) 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 TransientMapping
          JPA transient "mapping".
 interface VersionMapping
          JPA version mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Fields in org.eclipse.jpt.jpa.core.context with type parameters of type AttributeMapping
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,Iterable<String>> AttributeMapping.ALL_MAPPING_NAMES_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,Iterable<String>> AttributeMapping.ALL_OVERRIDABLE_ASSOCIATION_MAPPING_NAMES_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,Iterable<String>> AttributeMapping.ALL_OVERRIDABLE_ATTRIBUTE_MAPPING_NAMES_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,Iterable<Generator>> AttributeMapping.GENERATORS_TRANSFORMER
           
static org.eclipse.jpt.common.utility.predicate.Predicate<AttributeMapping> AttributeMapping.IS_NOT_TRANSIENT
           
static org.eclipse.jpt.common.utility.predicate.Predicate<AttributeMapping> AttributeMapping.IS_OVERRIDABLE_ASSOCIATION_MAPPING
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentAttribute,AttributeMapping> PersistentAttribute.MAPPING_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,String> AttributeMapping.NAME_TRANSFORMER
           
 

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

Methods in org.eclipse.jpt.jpa.core.context that return AttributeMapping
 AttributeMapping PersistentAttribute.getMapping()
          Return the attribute's mapping.
 AttributeMapping Converter.getParent()
           
 AttributeMapping Orderable.getParent()
           
 AttributeMapping AttributeMapping.resolveAttributeMapping(String name)
          Return the mapping itself if its name matches the specified name.
 AttributeMapping Entity.resolveAttributeMapping(String name)
          Returns the attribute mapping that matches the name.
 AttributeMapping SpecifiedPersistentAttribute.setMappingKey(String key)
          Set the attribute's mapping.
 AttributeMapping PersistentAttribute.MappingTransformer.transform(PersistentAttribute pa)
           
 

Methods in org.eclipse.jpt.jpa.core.context that return types with arguments of type AttributeMapping
 Iterable<AttributeMapping> TypeMapping.getAllAttributeMappings()
          Return all the attribute mappings in the type mapping's inheritance hierarchy.
 Iterable<AttributeMapping> TypeMapping.getNonTransientAttributeMappings()
          Return all the non-transient attribute mappings in the type mapping's inheritance hierarchy
 

Methods in org.eclipse.jpt.jpa.core.context with parameters of type AttributeMapping
 boolean AttributeMapping.KeyEquals.evaluate(AttributeMapping mapping)
           
 boolean AttributeMapping.IsNotTransient.evaluate(AttributeMapping mapping)
           
 boolean AttributeMapping.IsOverridableAssociationMapping.evaluate(AttributeMapping mapping)
           
 boolean AttributeMapping.isOwnedBy(AttributeMapping mapping)
          Return whether the specified mapping manages a relationship with the mapping.
 boolean MappedByRelationship.mayBeMappedBy(AttributeMapping mapping)
          Return whether the specified mapping may own the relationship.
 String AttributeMapping.NameTransformer.transform(AttributeMapping mapping)
           
 Iterable<Generator> AttributeMapping.GeneratorsTransformer.transform(AttributeMapping mapping)
           
 Iterable<String> AttributeMapping.AllMappingNamesTransformer.transform(AttributeMapping mapping)
           
 Iterable<String> AttributeMapping.AllOverridableAttributeMappingNamesTransformer.transform(AttributeMapping mapping)
           
 Iterable<String> AttributeMapping.AllOverridableAssociationMappingNamesTransformer.transform(AttributeMapping mapping)
           
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.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
          Behavior common to Java embedded and embedded ID mappings.
 interface JavaBasicMapping
          Java basic 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 JavaColumnMapping
          Java column 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 JavaConvertibleMapping
          Java attribute mapping that has a converter (e.g. basic, ID, version).
 interface JavaEmbeddedIdMapping
          Java embedded ID 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 JavaEmbeddedMapping
          Java embedded 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 JavaGeneratedValueMapping
           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
          Java ID 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 JavaManyToManyMapping
          Java m:m 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 JavaManyToOneMapping
          Java m:1 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 JavaOneToManyMapping
          Java 1:m 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 JavaOneToOneMapping
          Java 1:1 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 JavaRelationshipMapping
          Java relationship (1:1, 1:m, m:1, m:m) mapping.
 interface JavaSingleRelationshipMapping
          Java single (m:1, 1:1) 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 JavaTransientMapping
          Java transient "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 JavaVersionMapping
          Java version mapping 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.jpa.core.context.orm
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.core.context.orm
 interface OrmAttributeMapping
          orm.xml 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 OrmBaseEmbeddedMapping
          Behavior common to orm.xml embedded and embedded ID mappings.
 interface OrmBasicMapping
          orm.xml basic 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 OrmColumnMapping
          orm.xml column 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 OrmConvertibleMapping
          orm.xml attribute mapping that has a converter (e.g. basic, ID, version).
 interface OrmEmbeddedIdMapping
          orm.xml embedded ID 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 OrmEmbeddedMapping
          orm.xml embedded 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 OrmGeneratedValueMapping
          orm.xml ID 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 OrmIdMapping
          orm.xml ID 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 OrmManyToManyMapping
          orm.xml m:m 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 OrmManyToOneMapping
          orm.xml m:1 mapping.
 interface OrmMultiRelationshipMapping
          orm.xml multi-valued relationship (1:m, m:m) mapping.
 interface OrmOneToManyMapping
          orm.xml 1:m 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 OrmOneToOneMapping
          orm.xml 1:1 mapping.
 interface OrmRelationshipMapping
          orm.xml relationship (1:1, 1:m, m:1, m:m) mapping.
 interface OrmSingleRelationshipMapping
          orm.xml single (1:1, m:1) mapping.
 interface OrmTransientMapping
          orm.xml transient "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 OrmVersionMapping
          orm.xml version mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Fields in org.eclipse.jpt.jpa.core.context.orm with type parameters of type AttributeMapping
static org.eclipse.jpt.common.utility.transformer.Transformer<OrmPersistentAttribute,AttributeMapping> OrmPersistentAttribute.MAPPING_TRANSFORMER
           
 

Methods in org.eclipse.jpt.jpa.core.context.orm that return AttributeMapping
 AttributeMapping OrmPersistentAttribute.getMapping()
          A specified orm.xml attribute will return an orm.xml mapping, while a virtual attribute will return a Java mapping.
 AttributeMapping OrmPersistentAttribute.MappingTransformer.transform(OrmPersistentAttribute attribute)
           
 

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

Classes in org.eclipse.jpt.jpa.core.jpa2.context with type parameters of type AttributeMapping
static interface Orderable2_0.ParentAdapter<M extends AttributeMapping>
          interface allowing ordering in multiple places (i.e. multi-value relationship and element collection mappings)
static class Orderable2_0.ParentAdapter.Null<M extends AttributeMapping>
          This can be used for JPA 1.0 implementations.
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.core.jpa2.context
 interface AttributeMapping2_0
          JPA 2.0 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 CollectionMapping2_0
          JPA 2.0 collection mapping (e.g. 1:m, m:m, element collection) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface ConvertibleKeyMapping2_0
          JPA attribute mapping that has a map key converter (JPA 2.0 collection mappings) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface DerivableIdMapping2_0
          JPA 2.0 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 ElementCollectionMapping2_0
          JPA 2.0 element collection 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 EmbeddedIdMapping2_0
          JPA 2.0 embedded ID 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 EmbeddedMapping2_0
          JPA 2.0 embedded 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 IdMapping2_0
          JPA 2.0 ID 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 ManyToManyMapping2_0
          JPA 2.0 m:m 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 ManyToOneMapping2_0
          JPA 2.0 m:1 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 MultiRelationshipMapping2_0
          JPA 2.0 multi relationship (m:m, 1:m) 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 OneToManyMapping2_0
          JPA 2.0 1:m 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 OneToOneMapping2_0
          JPA 2.0 1:1 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 OrphanRemovalMapping2_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 RelationshipMapping2_0
          JPA 2.0 relationship (1:m, m:m, m:1, 1:1) 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 SingleRelationshipMapping2_0
          JPA 2.0 single relationship (m:1, 1:1) mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Fields in org.eclipse.jpt.jpa.core.jpa2.context declared as AttributeMapping
protected  M Orderable2_0.ParentAdapter.Null.parent
           
 

Methods in org.eclipse.jpt.jpa.core.jpa2.context that return AttributeMapping
 AttributeMapping MapsIdDerivedIdentityStrategy2_0.getDerivedIdAttributeMapping()
          Return attribute mapping referenced by the ID attribute name, which may be a mapping on the entity or a mapping within the embeddable mapping referenced by the entity's embedded ID mapping.
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.core.jpa2.context.java
 interface JavaCollectionMapping2_0
          Java collection mapping (e.g. 1:m, m:m, element collection) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaConvertibleKeyMapping2_0
          Java attribute mapping that has a key converter, collection mappings Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaElementCollectionMapping2_0
          Java element collection 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 JavaEmbeddedMapping2_0
          JPA 2.0 Java embedded 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 JavaSingleRelationshipMapping2_0
          JPA 2.0 Java single (m:1, 1:1) mapping 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.jpa.core.jpa2.context.orm
 

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.core.jpa2.context.orm
 interface OrmCollectionMapping2_0
          orm.xml collection mapping (e.g. 1:m, m:m, element collection) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmConvertibleKeyMapping2_0
          Java attribute mapping that has a key converter, collection mappings Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface OrmElementCollectionMapping2_0
          orm.xml element collection 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 OrmEmbeddedMapping2_0
          JPA 2.0 orm.xml embedded 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 OrmSingleRelationshipMapping2_0
          JPA 2.0 orm.xml single (1:1, m:1) mapping.
 

Uses of AttributeMapping in org.eclipse.jpt.jpa.core.jpql.spi
 

Methods in org.eclipse.jpt.jpa.core.jpql.spi that return AttributeMapping
protected  AttributeMapping JpaMapping.getMapping()
          Returns the design-time mapping object.
 

Methods in org.eclipse.jpt.jpa.core.jpql.spi with parameters of type AttributeMapping
protected  IMapping JpaManagedType.buildMapping(AttributeMapping mapping)
          Creates the external form that needs to wrap the given AttributeMapping.
 IMapping GenericMappingBuilder.buildMapping(IManagedType parent, AttributeMapping value)
          
 

Constructors in org.eclipse.jpt.jpa.core.jpql.spi with parameters of type AttributeMapping
GenericJpaMapping(IManagedType parent, AttributeMapping mapping)
          Creates a new GenericJpaMapping.
JpaMapping(IManagedType parent, AttributeMapping mapping)
          Creates a new JpaMapping.
 

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

Subinterfaces of AttributeMapping in org.eclipse.jpt.jpa.eclipselink.core.context
 interface EclipseLinkArrayMapping2_3
          EclipseLink array 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 EclipseLinkBasicCollectionMapping
          EclipseLink basic collection 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 EclipseLinkBasicMapMapping
          EclipseLink basic map 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 EclipseLinkBasicMapping
          EclipseLink basic mapping.
 interface EclipseLinkElementCollectionMapping2_0
          EclipseLink element collection 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 EclipseLinkIdMapping
          EclipseLink ID 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 EclipseLinkIdMapping2_0
          EclipseLink ID mapping 2.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 EclipseLinkJoinFetchMapping
          EclipseLink join-fetch mapping.
 interface EclipseLinkManyToManyMapping
          EclipseLink relationship (1:1, 1:m, m:1, m:m) mapping.
 interface EclipseLinkManyToManyMapping2_0
          EclipseLink ID mapping 2.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 EclipseLinkManyToOneMapping
          EclipseLink relationship (1:1, 1:m, m:1, m:m) mapping.
 interface EclipseLinkManyToOneMapping2_0
          EclipseLink m:1 mapping 2.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 EclipseLinkOneToManyMapping
          EclipseLink 1:m 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 EclipseLinkOneToManyMapping2_0
          EclipseLink 1:m 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 EclipseLinkOneToOneMapping
          EclipseLink 1:1 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 EclipseLinkOneToOneMapping2_0
          EclipseLink 1:1 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 EclipseLinkRelationshipMapping
          EclipseLink relationship (1:1, 1:m, m:1, m:m) mapping.
 interface EclipseLinkStructureMapping2_3
          EclipseLink structure 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 EclipseLinkTransformationMapping
          EclipseLink transformation 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 EclipseLinkVariableOneToOneMapping
          EclipseLink variable 1:1 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 EclipseLinkVersionMapping
          EclipseLink version mapping Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Fields in org.eclipse.jpt.jpa.eclipselink.core.context with type parameters of type AttributeMapping
static org.eclipse.jpt.common.utility.transformer.Transformer<AttributeMapping,Iterable<EclipseLinkConverter>> EclipseLinkConvertibleMapping.ATTRIBUTE_MAPPING_CONVERTERS_TRANSFORMER
           
 

Methods in org.eclipse.jpt.jpa.eclipselink.core.context with parameters of type AttributeMapping
 Iterable<EclipseLinkConverter> EclipseLinkConvertibleMapping.AttributeMappingConvertersTransformer.transform(AttributeMapping attributeMapping)
           
 

Uses of AttributeMapping in org.eclipse.jpt.jpa.eclipselink.core.jpql.spi
 

Methods in org.eclipse.jpt.jpa.eclipselink.core.jpql.spi that return AttributeMapping
protected  AttributeMapping EclipseLinkMapping.getMapping()
          Returns the design-time mapping object.
 

Methods in org.eclipse.jpt.jpa.eclipselink.core.jpql.spi with parameters of type AttributeMapping
 IMapping EclipseLinkMappingBuilder.buildMapping(IManagedType parent, AttributeMapping value)
          
 

Constructors in org.eclipse.jpt.jpa.eclipselink.core.jpql.spi with parameters of type AttributeMapping
EclipseLinkMapping(IManagedType parent, AttributeMapping mapping)
          Creates a new EclipseLinkMapping.
 

Uses of AttributeMapping in org.eclipse.jpt.jpa.ui
 

Method parameters in org.eclipse.jpt.jpa.ui with type arguments of type AttributeMapping
 JpaComposite JpaPlatformUi.buildAttributeMappingComposite(JptResourceType resourceType, String mappingKey, Composite parentComposite, PropertyValueModel<AttributeMapping> mappingModel, PropertyValueModel<Boolean> enabledModel, WidgetFactory widgetFactory, ResourceManager resourceManager)
           
 JpaComposite MappingResourceUiDefinition.buildAttributeMappingComposite(String mappingKey, PropertyValueModel<AttributeMapping> mappingModel, PropertyValueModel<Boolean> enabledModel, Composite parentComposite, WidgetFactory widgetFactory, ResourceManager resourceManager)
          Build an attribute mapping composite for the specified mapping.
 


Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.