KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface AOccurrenceOperation extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.behavioralelements.statemachines.CallEvent occurrence, org.omg.uml.foundation.core.Operation operation);
5     public java.util.Collection JavaDoc getOccurrence(org.omg.uml.foundation.core.Operation operation);
6     public org.omg.uml.foundation.core.Operation getOperation(org.omg.uml.behavioralelements.statemachines.CallEvent occurrence);
7     public boolean add(org.omg.uml.behavioralelements.statemachines.CallEvent occurrence, org.omg.uml.foundation.core.Operation operation);
8     public boolean remove(org.omg.uml.behavioralelements.statemachines.CallEvent occurrence, org.omg.uml.foundation.core.Operation operation);
9 }
10
Popular Tags