KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface SubmachineState extends org.omg.uml.behavioralelements.statemachines.CompositeState {
4     public org.omg.uml.behavioralelements.statemachines.StateMachine getSubmachine();
5     public void setSubmachine(org.omg.uml.behavioralelements.statemachines.StateMachine newValue);
6 }
7
Popular Tags