KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface AContainerSubvertex extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.statemachines.CompositeState container, org.omg.uml.behavioralelements.statemachines.StateVertex subvertex);
5     public org.omg.uml.behavioralelements.statemachines.CompositeState getContainer(org.omg.uml.behavioralelements.statemachines.StateVertex subvertex);
6     public java.util.Collection JavaDoc getSubvertex(org.omg.uml.behavioralelements.statemachines.CompositeState container);
7     public boolean add(org.omg.uml.behavioralelements.statemachines.CompositeState container, org.omg.uml.behavioralelements.statemachines.StateVertex subvertex);
8     public boolean remove(org.omg.uml.behavioralelements.statemachines.CompositeState container, org.omg.uml.behavioralelements.statemachines.StateVertex subvertex);
9 }
10
Popular Tags