KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > collaborations > ACollaborationConstrainingElement


1 package org.omg.uml.behavioralelements.collaborations;
2
3 public interface ACollaborationConstrainingElement extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.collaborations.Collaboration collaboration, org.omg.uml.foundation.core.ModelElement constrainingElement);
5     public java.util.Collection JavaDoc getCollaboration(org.omg.uml.foundation.core.ModelElement constrainingElement);
6     public java.util.Collection JavaDoc getConstrainingElement(org.omg.uml.behavioralelements.collaborations.Collaboration collaboration);
7     public boolean add(org.omg.uml.behavioralelements.collaborations.Collaboration collaboration, org.omg.uml.foundation.core.ModelElement constrainingElement);
8     public boolean remove(org.omg.uml.behavioralelements.collaborations.Collaboration collaboration, org.omg.uml.foundation.core.ModelElement constrainingElement);
9 }
10
Popular Tags