KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface AStateMachineTransitions extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine, org.omg.uml.behavioralelements.statemachines.Transition transitions);
5     public org.omg.uml.behavioralelements.statemachines.StateMachine getStateMachine(org.omg.uml.behavioralelements.statemachines.Transition transitions);
6     public java.util.Collection JavaDoc getTransitions(org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine);
7     public boolean add(org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine, org.omg.uml.behavioralelements.statemachines.Transition transitions);
8     public boolean remove(org.omg.uml.behavioralelements.statemachines.StateMachine stateMachine, org.omg.uml.behavioralelements.statemachines.Transition transitions);
9 }
10
Popular Tags