KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface ATransitionEffect extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.statemachines.Transition transition, org.omg.uml.behavioralelements.commonbehavior.Action effect);
5     public org.omg.uml.behavioralelements.statemachines.Transition getTransition(org.omg.uml.behavioralelements.commonbehavior.Action effect);
6     public org.omg.uml.behavioralelements.commonbehavior.Action getEffect(org.omg.uml.behavioralelements.statemachines.Transition transition);
7     public boolean add(org.omg.uml.behavioralelements.statemachines.Transition transition, org.omg.uml.behavioralelements.commonbehavior.Action effect);
8     public boolean remove(org.omg.uml.behavioralelements.statemachines.Transition transition, org.omg.uml.behavioralelements.commonbehavior.Action effect);
9 }
10
Popular Tags