KickJava   Java API By Example, From Geeks To Geeks.

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


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 JavaDoc 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
Popular Tags