KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > activitygraphs > ObjectFlowState


1 package org.omg.uml.behavioralelements.activitygraphs;
2
3 public interface ObjectFlowState extends org.omg.uml.behavioralelements.statemachines.SimpleState {
4     public boolean isSynch();
5     public void setSynch(boolean newValue);
6     public java.util.Collection JavaDoc getParameter();
7     public org.omg.uml.foundation.core.Classifier getType();
8     public void setType(org.omg.uml.foundation.core.Classifier newValue);
9 }
10
Popular Tags