KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface StateVertex extends org.omg.uml.foundation.core.ModelElement {
4     public org.omg.uml.behavioralelements.statemachines.CompositeState getContainer();
5     public void setContainer(org.omg.uml.behavioralelements.statemachines.CompositeState newValue);
6     public java.util.Collection JavaDoc getOutgoing();
7     public java.util.Collection JavaDoc getIncoming();
8 }
9
Popular Tags