1 package org.omg.uml.behavioralelements.statemachines;2 3 public interface ABehaviorContext extends javax.jmi.reflect.RefAssociation {4 public boolean exists(org.omg.uml.behavioralelements.statemachines.StateMachine behavior, org.omg.uml.foundation.core.ModelElement context);5 public java.util.Collection getBehavior(org.omg.uml.foundation.core.ModelElement context);6 public org.omg.uml.foundation.core.ModelElement getContext(org.omg.uml.behavioralelements.statemachines.StateMachine behavior);7 public boolean add(org.omg.uml.behavioralelements.statemachines.StateMachine behavior, org.omg.uml.foundation.core.ModelElement context);8 public boolean remove(org.omg.uml.behavioralelements.statemachines.StateMachine behavior, org.omg.uml.foundation.core.ModelElement context);9 }10