net.sf.farrago.cwm.core
Class DependencySupplier$Hib

java.lang.Object
  extended by org.eigenbase.enki.jmi.impl.RefBaseObjectBase
      extended by org.eigenbase.enki.jmi.impl.RefAssociationBase
          extended by org.eigenbase.enki.hibernate.jmi.HibernateRefAssociation
              extended by org.eigenbase.enki.hibernate.jmi.HibernateManyToManyRefAssociation<CwmModelElement,CwmDependency>
                  extended by net.sf.farrago.cwm.core.DependencySupplier$Hib
All Implemented Interfaces:
RefAssociation, RefBaseObject, DependencySupplier

public class DependencySupplier$Hib
extends HibernateManyToManyRefAssociation<CwmModelElement,CwmDependency>
implements DependencySupplier

DependencySupplier association implementation. The DependencySupplier association links Dependency instances with ModelElements that act as suppliers in the represented dependency relationship.

Note: This type should not be subclassed, implemented or directly instantiated by clients. It is generated from a MOF metamodel and implemented by Enki or MDR.


Field Summary
private static String _allLinksQueryName
           
private static String _collectionTable
           
private static String _id
           
private static String _table
           
 
Fields inherited from class org.eigenbase.enki.hibernate.jmi.HibernateRefAssociation
type
 
Fields inherited from class org.eigenbase.enki.jmi.impl.RefAssociationBase
end1Class, end1Multiplicity, end1Name, end2Class, end2Multiplicity, end2Name
 
Constructor Summary
DependencySupplier$Hib(RefPackage container)
           
 
Method Summary
 boolean add(CwmModelElement supplier, CwmDependency supplierDependency)
          Creates a link between the pair of instance objects in the associations link set.
 boolean exists(CwmModelElement supplier, CwmDependency supplierDependency)
          Queries whether a link currently exists between a given pair of instance objects in the associations link set.
protected  String getAllLinksQueryName()
           
protected  String getAssociationIdentifier()
           
 String getCollectionTable()
           
 Class<? extends HibernateAssociation> getInstanceClass()
           
 HibernateAssociation.Kind getKind()
           
 Collection<CwmModelElement> getSupplier(CwmDependency supplierDependency)
          Queries the instance objects that are related to a particular instance object by a link in the current associations link set.
 Collection<CwmDependency> getSupplierDependency(CwmModelElement supplier)
          Queries the instance objects that are related to a particular instance object by a link in the current associations link set.
 String getTable()
           
 boolean remove(CwmModelElement supplier, CwmDependency supplierDependency)
          Removes a link between a pair of instance objects in the current associations link set.
 
Methods inherited from class org.eigenbase.enki.hibernate.jmi.HibernateManyToManyRefAssociation
getSourceOf, getTargetOf
 
Methods inherited from class org.eigenbase.enki.hibernate.jmi.HibernateRefAssociation
checkConstraints, fireAddEvent, fireAddEvent, fireAddEvent, fireRemoveEvent, fireRemoveEvent, fireRemoveEvent, fireSetEvent, getHibernateRepository, query, refAddLink, refAllLinks, refLinkExists, refRemoveLink
 
Methods inherited from class org.eigenbase.enki.jmi.impl.RefAssociationBase
checkFirstEndType, checkSecondEndType, checkTypes, getRepository, makeWrongSizeException, refImmediatePackage, refQuery, refQuery
 
Methods inherited from class org.eigenbase.enki.jmi.impl.RefBaseObjectBase
createInstance, equals, getCurrentInitializer, getEnum, getInitializer, getMofId, getTag, hashCode, invokeMethod, invokeMethod, logJmi, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints, setMofId, setRefMetaObject
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.jmi.reflect.RefAssociation
refAddLink, refAllLinks, refLinkExists, refQuery, refQuery, refRemoveLink
 
Methods inherited from interface javax.jmi.reflect.RefBaseObject
equals, hashCode, refImmediatePackage, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints
 

Field Detail

_id

private static final String _id
See Also:
Constant Field Values

_allLinksQueryName

private static final String _allLinksQueryName
See Also:
Constant Field Values

_table

private static final String _table
See Also:
Constant Field Values

_collectionTable

private static final String _collectionTable
See Also:
Constant Field Values
Constructor Detail

DependencySupplier$Hib

public DependencySupplier$Hib(RefPackage container)
Method Detail

exists

public boolean exists(CwmModelElement supplier,
                      CwmDependency supplierDependency)
Description copied from interface: DependencySupplier
Queries whether a link currently exists between a given pair of instance objects in the associations link set.

Specified by:
exists in interface DependencySupplier
Overrides:
exists in class HibernateManyToManyRefAssociation<CwmModelElement,CwmDependency>
Parameters:
supplier - Value of the first association end.
supplierDependency - Value of the second association end.
Returns:
Returns true if the queried link exists.

getSupplier

public Collection<CwmModelElement> getSupplier(CwmDependency supplierDependency)
Description copied from interface: DependencySupplier
Queries the instance objects that are related to a particular instance object by a link in the current associations link set.

Specified by:
getSupplier in interface DependencySupplier
Parameters:
supplierDependency - Required value of the second association end.
Returns:
Collection of related objects.

getSupplierDependency

public Collection<CwmDependency> getSupplierDependency(CwmModelElement supplier)
Description copied from interface: DependencySupplier
Queries the instance objects that are related to a particular instance object by a link in the current associations link set.

Specified by:
getSupplierDependency in interface DependencySupplier
Parameters:
supplier - Required value of the first association end.
Returns:
Collection of related objects.

add

public boolean add(CwmModelElement supplier,
                   CwmDependency supplierDependency)
Description copied from interface: DependencySupplier
Creates a link between the pair of instance objects in the associations link set.

Specified by:
add in interface DependencySupplier
Overrides:
add in class HibernateManyToManyRefAssociation<CwmModelElement,CwmDependency>
Parameters:
supplier - Value of the first association end.
supplierDependency - Value of the second association end.

remove

public boolean remove(CwmModelElement supplier,
                      CwmDependency supplierDependency)
Description copied from interface: DependencySupplier
Removes a link between a pair of instance objects in the current associations link set.

Specified by:
remove in interface DependencySupplier
Overrides:
remove in class HibernateManyToManyRefAssociation<CwmModelElement,CwmDependency>
Parameters:
supplier - Value of the first association end.
supplierDependency - Value of the second association end.

getAssociationIdentifier

protected String getAssociationIdentifier()
Specified by:
getAssociationIdentifier in class HibernateRefAssociation

getInstanceClass

public Class<? extends HibernateAssociation> getInstanceClass()
Specified by:
getInstanceClass in class HibernateRefAssociation

getKind

public HibernateAssociation.Kind getKind()
Specified by:
getKind in class HibernateRefAssociation

getAllLinksQueryName

protected String getAllLinksQueryName()
Specified by:
getAllLinksQueryName in class HibernateRefAssociation

getTable

public String getTable()
Specified by:
getTable in class HibernateRefAssociation

getCollectionTable

public String getCollectionTable()
Specified by:
getCollectionTable in class HibernateRefAssociation