Uses of Interface
org.apache.jdo.model.jdo.JDORelationship

Packages that use JDORelationship
org.apache.jdo.impl.model.jdo This package contains classes that implement the JDO model interfaces and provide access to JDO metadata. 
org.apache.jdo.impl.model.jdo.caching   
org.apache.jdo.impl.model.jdo.util   
org.apache.jdo.model.jdo This package defines the JDOModel API. 
 

Uses of JDORelationship in org.apache.jdo.impl.model.jdo
 

Classes in org.apache.jdo.impl.model.jdo that implement JDORelationship
 class JDOArrayImplDynamic
          An instance of this class represents the JDO relationship metadata of a array relationship field.
 class JDOCollectionImplDynamic
          An instance of this class represents the JDO relationship metadata of a collection relationship field.
 class JDOMapImplDynamic
          An instance of this class represents the JDO relationship metadata (the treatment of keys and values) of a map relationship field.
 class JDOReferenceImplDynamic
          An instance of this class represents the JDO relationship metadata of a reference relationship field.
 class JDORelationshipImpl
          JDORelationship is the super interface for all interfaces representing JDO relationship metadata of a managed field of a persistence capable class.
 

Fields in org.apache.jdo.impl.model.jdo declared as JDORelationship
protected  JDORelationship JDOFieldImplDynamic.relationship
          Relationship JDOField<->JDORelationship.
protected  JDORelationship JDORelationshipImpl.mappedBy
          Relationship JDORelationship<->JDORelationship.
protected  JDORelationship JDORelationshipImpl.inverse
          Relationship JDORelationship<->JDORelationship.
 

Methods in org.apache.jdo.impl.model.jdo that return JDORelationship
 JDORelationship JDOFieldImplDynamic.getRelationship()
          Get the relationship information for this JDOField.
 JDORelationship JDOAssociatedPropertyImplDynamic.getRelationship()
          Deletegate to associatedJDOField.
 JDORelationship JDORelationshipImpl.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDORelationshipImpl.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 

Methods in org.apache.jdo.impl.model.jdo with parameters of type JDORelationship
 void JDOFieldImplDynamic.setRelationship(JDORelationship relationship)
          Set the relationship information for this JDOField.
 void JDOAssociatedPropertyImplDynamic.setRelationship(JDORelationship relationship)
          Throws ModelException.
 void JDORelationshipImpl.setMappedBy(JDORelationship mappedBy)
          Set the mappedBy relationship for this relationship.
 void JDORelationshipImpl.setInverseRelationship(JDORelationship inverseRelationship)
          Set the inverse JDORelationship in the case of a two-way relationship.
private  void JDORelationshipImpl.changeInverseRelationship(JDORelationship inverseRelationship)
          Changes the inverse relationship element for this relationship element.
 

Uses of JDORelationship in org.apache.jdo.impl.model.jdo.caching
 

Classes in org.apache.jdo.impl.model.jdo.caching that implement JDORelationship
 class JDOArrayImplCaching
          An instance of this class represents the JDO relationship metadata of a array relationship field.
 class JDOCollectionImplCaching
          An instance of this class represents the JDO relationship metadata of a collection relationship field.
 class JDOMapImplCaching
          An instance of this class represents the JDO relationship metadata (the treatment of keys and values) of a map relationship field.
 class JDOReferenceImplCaching
          An instance of this class represents the JDO relationship metadata of a reference relationship field.
 

Methods in org.apache.jdo.impl.model.jdo.caching that return JDORelationship
 JDORelationship JDOCollectionImplCaching.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDOCollectionImplCaching.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 JDORelationship JDOFieldImplCaching.getRelationship()
          Get the relationship information for this JDOField.
 JDORelationship JDOArrayImplCaching.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDOArrayImplCaching.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 JDORelationship JDOMapImplCaching.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDOMapImplCaching.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 JDORelationship JDOReferenceImplCaching.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDOReferenceImplCaching.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 

Uses of JDORelationship in org.apache.jdo.impl.model.jdo.util
 

Methods in org.apache.jdo.impl.model.jdo.util with parameters of type JDORelationship
static void PrintSupport.printJDORelationship(JDORelationship jdoRelationship)
           
private static void PrintSupport.printJDORelationship(int indent, JDORelationship jdoRelationship)
           
private static void PrintSupport.printJDORelationshipHelper(int indent, JDORelationship jdoRelationship)
           
 

Uses of JDORelationship in org.apache.jdo.model.jdo
 

Subinterfaces of JDORelationship in org.apache.jdo.model.jdo
 interface JDOArray
          A JDOArray instance represents the JDO relationship metadata of a array relationship field.
 interface JDOCollection
          A JDOCollection instance represents the JDO relationship metadata of a collection relationship field.
 interface JDOMap
          A JDOMap instance represents the JDO relationship metadata (the treatment of keys and values) of a map relationship field.
 interface JDOReference
          A JDOReference instance represents the JDO relationship metadata of a reference relationship field.
 

Methods in org.apache.jdo.model.jdo that return JDORelationship
 JDORelationship JDOField.getRelationship()
          Get the relationship information for this JDOField.
 JDORelationship JDORelationship.getMappedBy()
          Get the mappedBy relationship.
 JDORelationship JDORelationship.getInverseRelationship()
          Get the inverse JDORelationship in the case of a two-way relationship.
 

Methods in org.apache.jdo.model.jdo with parameters of type JDORelationship
 void JDOField.setRelationship(JDORelationship relationship)
          Set the relationship information for this JDOField.
 void JDORelationship.setMappedBy(JDORelationship mappedBy)
          Set the mappedBy relationship for this relationship.
 void JDORelationship.setInverseRelationship(JDORelationship inverseRelationship)
          Deprecated. - call setMappedBy instead