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

Packages that use PrimaryKeyJoinColumn
org.eclipse.jpt.core.context   
org.eclipse.jpt.core.context.java   
org.eclipse.jpt.core.context.orm   
 

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

Methods in org.eclipse.jpt.core.context with type parameters of type PrimaryKeyJoinColumn
<T extends PrimaryKeyJoinColumn>
java.util.ListIterator<T>
Entity.primaryKeyJoinColumns()
           
<T extends PrimaryKeyJoinColumn>
java.util.ListIterator<T>
OneToOneMapping.primaryKeyJoinColumns()
          Return a list iterator of the primary key join columns.
<T extends PrimaryKeyJoinColumn>
java.util.ListIterator<T>
SecondaryTable.primaryKeyJoinColumns()
          Return a list iterator of the primary key join columns whether specified or default.
<T extends PrimaryKeyJoinColumn>
java.util.ListIterator<T>
Entity.specifiedPrimaryKeyJoinColumns()
           
<T extends PrimaryKeyJoinColumn>
java.util.ListIterator<T>
SecondaryTable.specifiedPrimaryKeyJoinColumns()
          Return a list iterator of the specified primary key join columns.
 

Methods in org.eclipse.jpt.core.context that return PrimaryKeyJoinColumn
 PrimaryKeyJoinColumn OneToOneMapping.addPrimaryKeyJoinColumn(int index)
          Add a specified join column to the join table return the object representing it.
 PrimaryKeyJoinColumn Entity.addSpecifiedPrimaryKeyJoinColumn(int index)
           
 PrimaryKeyJoinColumn SecondaryTable.addSpecifiedPrimaryKeyJoinColumn(int index)
          Add a specified primary key join column to the secondary table return the object representing it.
 PrimaryKeyJoinColumn Entity.getDefaultPrimaryKeyJoinColumn()
           
 PrimaryKeyJoinColumn SecondaryTable.getDefaultPrimaryKeyJoinColumn()
          Return the default primary key join column or null.
 

Methods in org.eclipse.jpt.core.context with parameters of type PrimaryKeyJoinColumn
 void OneToOneMapping.removePrimaryKeyJoinColumn(PrimaryKeyJoinColumn primaryKeyJoinColumn)
          Remove the specified join column at the index from the join table.
 void Entity.removeSpecifiedPrimaryKeyJoinColumn(PrimaryKeyJoinColumn primaryKeyJoinColumn)
           
 void SecondaryTable.removeSpecifiedPrimaryKeyJoinColumn(PrimaryKeyJoinColumn pkJoinColumn)
          Remove the specified primary key join column at the index from the secondary table.
 

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

Subinterfaces of PrimaryKeyJoinColumn in org.eclipse.jpt.core.context.java
 interface JavaPrimaryKeyJoinColumn
          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 PrimaryKeyJoinColumn in org.eclipse.jpt.core.context.orm
 

Subinterfaces of PrimaryKeyJoinColumn in org.eclipse.jpt.core.context.orm
 interface OrmPrimaryKeyJoinColumn
          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.orm with parameters of type PrimaryKeyJoinColumn
 void OrmPrimaryKeyJoinColumn.initializeFrom(PrimaryKeyJoinColumn oldPkJoinColumn)