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

Packages that use MappingRelationship
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.eclipselink.core.context   
org.eclipse.jpt.jpa.eclipselink.core.context.java   
org.eclipse.jpt.jpa.eclipselink.core.context.orm   
org.eclipse.jpt.jpa.eclipselink.core.v2_0.context   
org.eclipse.jpt.jpa.eclipselink.core.v2_0.context.java   
org.eclipse.jpt.jpa.eclipselink.core.v2_0.context.orm   
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.context
 interface ManyToManyRelationship
          m:m relationship reference
 interface ManyToOneRelationship
          m:1 relationship (join column)
 interface OneToManyRelationship
          1:m relationship (mapped by, join table)
 interface OneToOneRelationship
          1:1 relationship (mapped by, join column, primary key join column)
 

Methods in org.eclipse.jpt.jpa.core.context that return MappingRelationship
 MappingRelationship RelationshipMapping.getRelationship()
          Return the meta-information used to populate the entities of the relationship
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.context.java
 interface JavaManyToManyRelationship
          Java m:m relationship
 interface JavaManyToOneRelationship
          Java m:1 relationship
 interface JavaMappingJoinColumnRelationship
          Java mapping join column relationship (1:1, 1:m, m:1)
 interface JavaMappingJoinTableRelationship
          Java mapping join table relationship (1:1, 1:m, m:1, m:m)
 interface JavaMappingRelationship
          Java mapping relationship (1:1, 1:m, m:1, m:m)
 interface JavaOneToManyRelationship
          Java 1:m relationship
 interface JavaOneToOneRelationship
          Java 1:1 relationship
 interface JavaPrimaryKeyJoinColumnRelationship
          Java primary key join column relationship (1:1)
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.context.orm
 interface OrmManyToManyRelationship
          orm.xml m:m relationship
 interface OrmManyToOneRelationship
          orm.xml m:1 relationship
 interface OrmMappingJoinColumnRelationship
          orm.xml mapping join column relationship (1:1, 1:m, m:1)
 interface OrmMappingJoinTableRelationship
          orm.xml mapping join table relationship (1:1, 1:m, m:1, m:m)
 interface OrmMappingRelationship
          orm.xml mapping relationship (1:1, 1:m, m:1, m:m)
 interface OrmOneToManyRelationship
          orm.xml 1:m relationship reference
 interface OrmOneToOneRelationship
          orm.xml 1:1 relationship
 interface OrmPrimaryKeyJoinColumnRelationship
          orm.xml primary key join column relationship (1:1)
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.jpa2.context
 interface ManyToOneRelationship2_0
          JPA 2.0 m:1 relationship (mapped by, join column, join table)
 interface OneToManyRelationship2_0
          JPA 2.0 1:m relationship (mapped by, join table, join column)
 interface OneToOneRelationship2_0
          JPA 2.0 1:1 relationship (mapped by, join column, primary key join column, join table)
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.jpa2.context.java
 interface JavaManyToOneRelationship2_0
          JPA 2.0 Java m:1 relationship
 interface JavaOneToManyRelationship2_0
          JPA 2.0 Java 1:m relationship
 interface JavaOneToOneRelationship2_0
          JPA 2.0 Java 1:1 relationship
 

Uses of MappingRelationship in org.eclipse.jpt.jpa.core.jpa2.context.orm
 

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.core.jpa2.context.orm
 interface OrmManyToOneRelationship2_0
          JPA 2.0 orm.xml m:1 relationship
 interface OrmOneToManyRelationship2_0
          JPA 2.0 orm.xml 1:m relationship
 interface OrmOneToOneRelationship2_0
          JPA 2.0 orm.xml 1:1 relationship
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.context
 interface EclipseLinkOneToManyRelationship
          EclipseLink 1:m relationship
 

Uses of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.context.java
 

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.context.java
 interface EclipseLinkJavaOneToManyRelationship
          EclipseLink Java 1:m relationship
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.context.orm
 interface EclipseLinkOrmOneToManyRelationship
          EclipseLink orm.xml 1:m relationship
 

Uses of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.v2_0.context
 

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.v2_0.context
 interface EclipseLinkOneToManyRelationship2_0
          EclipseLink 2.0 1:m relationship
 

Uses of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.v2_0.context.java
 

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.v2_0.context.java
 interface EclipseLinkJavaOneToManyRelationship2_0
          EclipseLink 2.0 Java 1:m relationship
 

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

Subinterfaces of MappingRelationship in org.eclipse.jpt.jpa.eclipselink.core.v2_0.context.orm
 interface EclipseLinkOrmOneToManyRelationship2_0
          EclipseLink 2.0 orm.xml 1:m relationship