1 package org.omg.uml.behavioralelements.statemachines;2 3 public interface AState2Exit extends javax.jmi.reflect.RefAssociation {4 public boolean exists(org.omg.uml.behavioralelements.statemachines.State state2, org.omg.uml.behavioralelements.commonbehavior.Action exit);5 public org.omg.uml.behavioralelements.statemachines.State getState2(org.omg.uml.behavioralelements.commonbehavior.Action exit);6 public org.omg.uml.behavioralelements.commonbehavior.Action getExit(org.omg.uml.behavioralelements.statemachines.State state2);7 public boolean add(org.omg.uml.behavioralelements.statemachines.State state2, org.omg.uml.behavioralelements.commonbehavior.Action exit);8 public boolean remove(org.omg.uml.behavioralelements.statemachines.State state2, org.omg.uml.behavioralelements.commonbehavior.Action exit);9 }10