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

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

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

Methods in org.eclipse.jpt.core.context with type parameters of type JoinColumn
<T extends JoinColumn>
java.util.ListIterator<T>
AssociationOverride.defaultJoinColumns()
           
<T extends JoinColumn>
java.util.ListIterator<T>
JoinTable.inverseJoinColumns()
          Return a list iterator of the inverse join columns whether specified or default.
<T extends JoinColumn>
java.util.ListIterator<T>
AssociationOverride.joinColumns()
           
<T extends JoinColumn>
java.util.ListIterator<T>
JoinTable.joinColumns()
          Return a list iterator of the join columns whether specified or default.
<T extends JoinColumn>
java.util.ListIterator<T>
SingleRelationshipMapping.joinColumns()
          Return a list iterator of the join columns whether specified or default.
<T extends JoinColumn>
java.util.ListIterator<T>
JoinTable.specifiedInverseJoinColumns()
          Return a list iterator of the specified inverse join columns.
<T extends JoinColumn>
java.util.ListIterator<T>
AssociationOverride.specifiedJoinColumns()
           
<T extends JoinColumn>
java.util.ListIterator<T>
JoinTable.specifiedJoinColumns()
          Return a list iterator of the specified join columns.
<T extends JoinColumn>
java.util.ListIterator<T>
SingleRelationshipMapping.specifiedJoinColumns()
          Return a list iterator of the specified join columns.
 

Methods in org.eclipse.jpt.core.context that return JoinColumn
 JoinColumn JoinTable.addSpecifiedInverseJoinColumn(int index)
          Add a specified inverse join column to the join table return the object representing it.
 JoinColumn AssociationOverride.addSpecifiedJoinColumn(int index)
           
 JoinColumn JoinTable.addSpecifiedJoinColumn(int index)
          Add a specified join column to the join table return the object representing it.
 JoinColumn SingleRelationshipMapping.addSpecifiedJoinColumn(int index)
          Add a specified join column to the join table return the object representing it.
 JoinColumn JoinTable.getDefaultInverseJoinColumn()
          Return the default inverse join column or null.
 JoinColumn JoinTable.getDefaultJoinColumn()
          Return the default join column or null.
 JoinColumn SingleRelationshipMapping.getDefaultJoinColumn()
          Return the default join column or null.
 

Methods in org.eclipse.jpt.core.context with parameters of type JoinColumn
 void JoinTable.removeSpecifiedInverseJoinColumn(JoinColumn joinColumn)
          Remove the specified inverse join column at the index from the join table.
 void JoinTable.removeSpecifiedJoinColumn(JoinColumn joinColumn)
          Remove the specified join column at the index from the join table.
 void SingleRelationshipMapping.removeSpecifiedJoinColumn(JoinColumn joinColumn)
          Remove the specified join column at the index from the join table.
 

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

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

Subinterfaces of JoinColumn in org.eclipse.jpt.core.context.orm
 interface OrmJoinColumn
          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 JoinColumn
 void OrmJoinColumn.initializeFrom(JoinColumn oldColumn)