KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.collaborations;
2
3 public interface Collaboration extends org.omg.uml.foundation.core.GeneralizableElement, org.omg.uml.foundation.core.Namespace {
4     public java.util.Collection JavaDoc getInteraction();
5     public org.omg.uml.foundation.core.Classifier getRepresentedClassifier();
6     public void setRepresentedClassifier(org.omg.uml.foundation.core.Classifier newValue);
7     public org.omg.uml.foundation.core.Operation getRepresentedOperation();
8     public void setRepresentedOperation(org.omg.uml.foundation.core.Operation newValue);
9     public java.util.Collection JavaDoc getConstrainingElement();
10     public java.util.Collection JavaDoc getUsedCollaboration();
11 }
12
Popular Tags