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

Packages that use TypeMapping
org.eclipse.jpt.jpa.core.context   
org.eclipse.jpt.jpa.core.context.java   
org.eclipse.jpt.jpa.core.context.orm   
org.eclipse.jpt.jpa.eclipselink.core.context   
org.eclipse.jpt.jpa.eclipselink.core.context.java   
org.eclipse.jpt.jpa.eclipselink.core.context.orm   
org.eclipse.jpt.jpa.ui   
org.eclipse.jpt.jpa.ui.details.java   
org.eclipse.jpt.jpa.ui.details.orm   
 

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

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.core.context
 interface Embeddable
          embeddable type 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 Entity
          entity
 interface MappedSuperclass
          mapped superclass
 

Methods in org.eclipse.jpt.jpa.core.context that return TypeMapping
 TypeMapping PersistentType.getMapping()
          Return the persistent type's mapping.
 TypeMapping OverrideContainer.getOverridableTypeMapping()
          Return the type mapping that contains the attributes/associations to be overridden.
 TypeMapping OverrideContainer.Owner.getOverridableTypeMapping()
          Return the type mapping that contains the attributes/associations to be overridden.
 TypeMapping ReadOnlyPersistentAttribute.getOwningTypeMapping()
          Return the attribute's owning persistent type's mapping (as opposed to the attribute's target type's mapping).
 TypeMapping ReadOnlyJoinColumnRelationshipStrategy.getRelationshipSource()
          The source of the relationship is usually the owning type mapping.
 TypeMapping ReadOnlyJoinColumnRelationshipStrategy.getRelationshipTarget()
          The target of the relationship usually is the target entity.
 TypeMapping TypeMapping.getSuperTypeMapping()
          Return the type mapping of this type mapping's super type.
 TypeMapping ReadOnlyRelationship.getTypeMapping()
          Return the type mapping that contains the relationship's mapping or override.
 TypeMapping ReadOnlyNamedColumn.Owner.getTypeMapping()
          Return the type mapping containing the column.
 TypeMapping OverrideContainer.getTypeMapping()
          Return the type mapping that this override is contained in
 TypeMapping OverrideContainer.Owner.getTypeMapping()
          Return the mapping of the persistent type where the container is defined.
 TypeMapping AttributeMapping.getTypeMapping()
          Return the mapping for the type that contains the mapping's attribute.
 

Methods in org.eclipse.jpt.jpa.core.context that return types with arguments of type TypeMapping
 java.util.Iterator<TypeMapping> TypeMapping.inheritanceHierarchy()
          Return the type mapping's "persistence" inheritance hierarchy, including the type mapping itself.
 

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

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.core.context.java
 interface JavaEmbeddable
          Java embeddable type mapping
 interface JavaEntity
          Java entity
 interface JavaMappedSuperclass
          Java mapped superclass
 interface JavaTypeMapping
          Java type mapping
 

Uses of TypeMapping in org.eclipse.jpt.jpa.core.context.orm
 

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.core.context.orm
 interface OrmEmbeddable
          orm.xml embeddable type mapping
 interface OrmEntity
          orm.xml entity
 interface OrmMappedSuperclass
          orm.xml mapped superclass
 interface OrmTypeMapping
          orm.xml type mapping
 

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

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.eclipselink.core.context
 interface EclipseLinkEmbeddable
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkEntity
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkMappedSuperclass
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface EclipseLinkNonEmbeddableTypeMapping
          EclipseLink non-embeddable type mapping
 interface EclipseLinkTypeMapping
          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 TypeMapping in org.eclipse.jpt.jpa.eclipselink.core.context.java
 

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.eclipselink.core.context.java
 interface EclipseLinkJavaTypeMapping
          EclipseLink Java type mapping
 interface JavaEclipseLinkEmbeddable
          EclipseLink Java embeddable type mapping
 interface JavaEclipseLinkEntity
          EclipseLink Java entity
 interface JavaEclipseLinkMappedSuperclass
          EclipseLink Java mapped superclass
 interface JavaEclipseLinkNonEmbeddableTypeMapping
          EclipseLink Java non-embeddable type mapping
 

Uses of TypeMapping in org.eclipse.jpt.jpa.eclipselink.core.context.orm
 

Subinterfaces of TypeMapping in org.eclipse.jpt.jpa.eclipselink.core.context.orm
 interface EclipseLinkOrmTypeMapping
          EclipseLink type mapping
 interface OrmEclipseLinkEmbeddable
          EclipseLink orm.xml embeddable
 interface OrmEclipseLinkEntity
          EclipseLink orm.xml entity
 interface OrmEclipseLinkMappedSuperclass
          EclipseLink orm.xml mapped superclass
 interface OrmEclipseLinkNonEmbeddableTypeMapping
          EclipseLink orm.xml non-embeddable type mapping
 

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

Methods in org.eclipse.jpt.jpa.ui that return types with arguments of type TypeMapping
 DefaultMappingUiDefinition<PersistentType,? extends TypeMapping> MappingResourceUiDefinition.getDefaultTypeMappingUiDefinition()
          Return a default type mapping ui provider or null
 DefaultMappingUiDefinition<PersistentType,? extends TypeMapping> JpaPlatformUi.getDefaultTypeMappingUiDefinition(JptResourceType resourceType)
           
 java.util.Iterator<MappingUiDefinition<PersistentType,? extends TypeMapping>> MappingResourceUiDefinition.typeMappingUiDefinitions()
           
 java.util.Iterator<MappingUiDefinition<PersistentType,? extends TypeMapping>> JpaPlatformUi.typeMappingUiDefinitions(JptResourceType resourceType)
           
 

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

Uses of TypeMapping in org.eclipse.jpt.jpa.ui.details.java
 

Classes in org.eclipse.jpt.jpa.ui.details.java with type parameters of type TypeMapping
 interface DefaultJavaTypeMappingUiDefinition<T extends TypeMapping>
          Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 interface JavaTypeMappingUiDefinition<T extends TypeMapping>
          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 TypeMapping in org.eclipse.jpt.jpa.ui.details.orm
 

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