KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.commonbehavior;
2
3 public interface Stimulus extends org.omg.uml.foundation.core.ModelElement {
4     public java.util.List JavaDoc getArgument();
5     public org.omg.uml.behavioralelements.commonbehavior.Instance getSender();
6     public void setSender(org.omg.uml.behavioralelements.commonbehavior.Instance newValue);
7     public org.omg.uml.behavioralelements.commonbehavior.Instance getReceiver();
8     public void setReceiver(org.omg.uml.behavioralelements.commonbehavior.Instance newValue);
9     public org.omg.uml.behavioralelements.commonbehavior.Link getCommunicationLink();
10     public void setCommunicationLink(org.omg.uml.behavioralelements.commonbehavior.Link newValue);
11     public org.omg.uml.behavioralelements.commonbehavior.Action getDispatchAction();
12     public void setDispatchAction(org.omg.uml.behavioralelements.commonbehavior.Action newValue);
13 }
14
Popular Tags