KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > commonbehavior > AStimulusCommunicationLink


1 package org.omg.uml.behavioralelements.commonbehavior;
2
3 public interface AStimulusCommunicationLink extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.commonbehavior.Stimulus stimulus, org.omg.uml.behavioralelements.commonbehavior.Link communicationLink);
5     public java.util.Collection JavaDoc getStimulus(org.omg.uml.behavioralelements.commonbehavior.Link communicationLink);
6     public org.omg.uml.behavioralelements.commonbehavior.Link getCommunicationLink(org.omg.uml.behavioralelements.commonbehavior.Stimulus stimulus);
7     public boolean add(org.omg.uml.behavioralelements.commonbehavior.Stimulus stimulus, org.omg.uml.behavioralelements.commonbehavior.Link communicationLink);
8     public boolean remove(org.omg.uml.behavioralelements.commonbehavior.Stimulus stimulus, org.omg.uml.behavioralelements.commonbehavior.Link communicationLink);
9 }
10
Popular Tags