org.eclipse.jpt.core.context
Interface PrimaryKeyJoinColumnEnabledRelationshipReference

All Superinterfaces:
org.eclipse.core.runtime.IAdaptable, IResourcePart, JpaContextNode, JpaNode, Model, RelationshipReference
All Known Subinterfaces:
JavaOneToOneRelationshipReference, JavaPrimaryKeyJoinColumnEnabledRelationshipReference, OneToOneRelationshipReference, OrmOneToOneRelationshipReference, OrmPrimaryKeyJoinColumnEnabledRelationshipReference

public interface PrimaryKeyJoinColumnEnabledRelationshipReference
extends RelationshipReference

A PrimaryKeyJoinColumnEnabledRelationshipReference is a type of RelationshipReference that may utilize a PrimaryKeyJoinColumnJoiningStrategy

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.

Since:
2.1
Version:
2.1
See Also:
RelationshipMapping, RelationshipReference, PrimaryKeyJoinColumn

Field Summary
 
Fields inherited from interface org.eclipse.jpt.core.context.RelationshipReference
PREDOMINANT_JOINING_STRATEGY_PROPERTY
 
Method Summary
 PrimaryKeyJoinColumnJoiningStrategy getPrimaryKeyJoinColumnJoiningStrategy()
          Return the aggregate (never null) object used to configure the primary key join column joining strategy
 boolean mayHaveDefaultPrimaryKeyJoinColumn()
          Return whether this reference may potentially have a default primary key join column.
 void setPrimaryKeyJoinColumnJoiningStrategy()
          Set the primary key join column joining strategy as the predominant joining strategy
 void unsetPrimaryKeyJoinColumnJoiningStrategy()
          Unset the primary key join column joining strategy as the predominant joining strategy.
 boolean usesPrimaryKeyJoinColumnJoiningStrategy()
          Return whether the primary key join column joining strategy is currently the predominant joining strategy
 
Methods inherited from interface org.eclipse.jpt.core.context.RelationshipReference
getPredominantJoiningStrategy, getRelationshipMapping, isOwnedBy, isRelationshipOwner
 
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

getPrimaryKeyJoinColumnJoiningStrategy

PrimaryKeyJoinColumnJoiningStrategy getPrimaryKeyJoinColumnJoiningStrategy()
Return the aggregate (never null) object used to configure the primary key join column joining strategy


usesPrimaryKeyJoinColumnJoiningStrategy

boolean usesPrimaryKeyJoinColumnJoiningStrategy()
Return whether the primary key join column joining strategy is currently the predominant joining strategy


setPrimaryKeyJoinColumnJoiningStrategy

void setPrimaryKeyJoinColumnJoiningStrategy()
Set the primary key join column joining strategy as the predominant joining strategy


unsetPrimaryKeyJoinColumnJoiningStrategy

void unsetPrimaryKeyJoinColumnJoiningStrategy()
Unset the primary key join column joining strategy as the predominant joining strategy. This will not set any other joining strategy as the predominant one, so whichever one is also configured (is specified) or the default strategy will apply at that point.


mayHaveDefaultPrimaryKeyJoinColumn

boolean mayHaveDefaultPrimaryKeyJoinColumn()
Return whether this reference may potentially have a default primary key join column.