KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > statemachines > CompositeState


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface CompositeState extends org.omg.uml.behavioralelements.statemachines.State {
4     public boolean isConcurrent();
5     public void setConcurrent(boolean newValue);
6     public java.util.Collection JavaDoc getSubvertex();
7 }
8
Popular Tags