KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface ATopStateMachine extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.statemachines.State top, org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine);
5     public org.omg.uml.behavioralelements.statemachines.State getTop(org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine);
6     public org.omg.uml.behavioralelements.statemachines.StateMachine getStateMachine(org.omg.uml.behavioralelements.statemachines.State top);
7     public boolean add(org.omg.uml.behavioralelements.statemachines.State top, org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine);
8     public boolean remove(org.omg.uml.behavioralelements.statemachines.State top, org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine);
9 }
10
Popular Tags