1 package org.omg.uml.behavioralelements.statemachines;2 3 public interface AStateEntry extends javax.jmi.reflect.RefAssociation {4 public boolean exists(org.omg.uml.behavioralelements.statemachines.State state, org.omg.uml.behavioralelements.commonbehavior.Action entry);5 public org.omg.uml.behavioralelements.statemachines.State getState(org.omg.uml.behavioralelements.commonbehavior.Action entry);6 public org.omg.uml.behavioralelements.commonbehavior.Action getEntry(org.omg.uml.behavioralelements.statemachines.State state);7 public boolean add(org.omg.uml.behavioralelements.statemachines.State state, org.omg.uml.behavioralelements.commonbehavior.Action entry);8 public boolean remove(org.omg.uml.behavioralelements.statemachines.State state, org.omg.uml.behavioralelements.commonbehavior.Action entry);9 }10