org.eclipse.jpt.core.context.java
Interface JavaJoinColumnJoiningStrategy

All Superinterfaces:
org.eclipse.core.runtime.IAdaptable, IResourcePart, JavaJoiningStrategy, JavaJpaContextNode, JoinColumnJoiningStrategy, JoiningStrategy, JpaContextNode, JpaNode, Model

public interface JavaJoinColumnJoiningStrategy
extends JavaJoiningStrategy, JoinColumnJoiningStrategy

The java representation of a JoinColumnJoiningStrategy Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Field Summary
 
Fields inherited from interface org.eclipse.jpt.core.context.JoinColumnJoiningStrategy
DEFAULT_JOIN_COLUMN_PROPERTY, SPECIFIED_JOIN_COLUMNS_LIST
 
Method Summary
 JavaJoinColumn addSpecifiedJoinColumn(int index)
          Add a specified join column to the join table return the object representing it.
 JavaJoinColumn getDefaultJoinColumn()
          Return the default join column or null.
 java.util.ListIterator<JavaJoinColumn> joinColumns()
          Return a list iterator of the join columns whether specified or default.
 java.util.ListIterator<JavaJoinColumn> specifiedJoinColumns()
          Return a list iterator of the specified join columns.
 
Methods inherited from interface org.eclipse.jpt.core.context.java.JavaJoiningStrategy
getRelationshipReference, initialize, update
 
Methods inherited from interface org.eclipse.jpt.core.context.java.JavaJpaContextNode
getValidationTextRange, javaCompletionProposals, validate
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getPersistenceUnit, postUpdate
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.IResourcePart
getResource
 
Methods inherited from interface org.eclipse.jpt.core.context.JoiningStrategy
addStrategy, removeStrategy
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getPersistenceUnit, postUpdate
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.IResourcePart
getResource
 
Methods inherited from interface org.eclipse.jpt.core.context.JoinColumnJoiningStrategy
hasSpecifiedJoinColumns, joinColumnsSize, moveSpecifiedJoinColumn, removeSpecifiedJoinColumn, removeSpecifiedJoinColumn, specifiedJoinColumnsSize
 
Methods inherited from interface org.eclipse.jpt.core.context.JoiningStrategy
addStrategy, removeStrategy
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getPersistenceUnit, postUpdate
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.IResourcePart
getResource
 

Method Detail

joinColumns

java.util.ListIterator<JavaJoinColumn> joinColumns()
Description copied from interface: JoinColumnJoiningStrategy
Return a list iterator of the join columns whether specified or default. This will not be null.

Specified by:
joinColumns in interface JoinColumnJoiningStrategy

getDefaultJoinColumn

JavaJoinColumn getDefaultJoinColumn()
Description copied from interface: JoinColumnJoiningStrategy
Return the default join column or null. If there are specified join columns, then there will be no default join column (though there are times that there may be no default join column even if there are no specified join columns.)

Specified by:
getDefaultJoinColumn in interface JoinColumnJoiningStrategy

specifiedJoinColumns

java.util.ListIterator<JavaJoinColumn> specifiedJoinColumns()
Description copied from interface: JoinColumnJoiningStrategy
Return a list iterator of the specified join columns. This will not be null.

Specified by:
specifiedJoinColumns in interface JoinColumnJoiningStrategy

addSpecifiedJoinColumn

JavaJoinColumn addSpecifiedJoinColumn(int index)
Description copied from interface: JoinColumnJoiningStrategy
Add a specified join column to the join table return the object representing it.

Specified by:
addSpecifiedJoinColumn in interface JoinColumnJoiningStrategy