package org.omg.uml.behavioralelements.commonbehavior; /** * A_actionSequence_action association proxy interface. * * <p><em><strong>Note:</strong> This type should not be subclassed or implemented * by clients. It is generated from a MOF metamodel and automatically implemented * by MDR (see <a href="http://mdr.netbeans.org/">mdr.netbeans.org</a>).</em></p> */ public interface AActionSequenceAction extends javax.jmi.reflect.RefAssociation { /** * Queries whether a link currently exists between a given pair of instance * objects in the associations link set. * @param actionSequence Value of the first association end. * @param action Value of the second association end. * @return Returns true if the queried link exists. */ public boolean exists(org.omg.uml.behavioralelements.commonbehavior.ActionSequence actionSequence, org.omg.uml.behavioralelements.commonbehavior.Action action); /** * Queries the instance object that is related to a particular instance object * by a link in the current associations link set. * @param action Required value of the second association end. * @return Related object or <code>null</code> if none exists. */ public org.omg.uml.behavioralelements.commonbehavior.ActionSequence getActionSequence(org.omg.uml.behavioralelements.commonbehavior.Action action); /** * Queries the instance objects that are related to a particular instance * object by a link in the current associations link set. * @param actionSequence Required value of the first association end. * @return List of related objects. */ public java.util.List getAction(org.omg.uml.behavioralelements.commonbehavior.ActionSequence actionSequence); /** * Creates a link between the pair of instance objects in the associations * link set. * @param actionSequence Value of the first association end. * @param action Value of the second association end. */ public boolean add(org.omg.uml.behavioralelements.commonbehavior.ActionSequence actionSequence, org.omg.uml.behavioralelements.commonbehavior.Action action); /** * Removes a link between a pair of instance objects in the current associations * link set. * @param actionSequence Value of the first association end. * @param action Value of the second association end. */ public boolean remove(org.omg.uml.behavioralelements.commonbehavior.ActionSequence actionSequence, org.omg.uml.behavioralelements.commonbehavior.Action action); }