1 package org.omg.uml.behavioralelements.commonbehavior;2 3 public interface Action extends org.omg.uml.foundation.core.ModelElement {4 public org.omg.uml.foundation.datatypes.IterationExpression getRecurrence();5 public void setRecurrence(org.omg.uml.foundation.datatypes.IterationExpression newValue);6 public org.omg.uml.foundation.datatypes.ObjectSetExpression getTarget();7 public void setTarget(org.omg.uml.foundation.datatypes.ObjectSetExpression newValue);8 public boolean isAsynchronous();9 public void setAsynchronous(boolean newValue);10 public org.omg.uml.foundation.datatypes.ActionExpression getScript();11 public void setScript(org.omg.uml.foundation.datatypes.ActionExpression newValue);12 public java.util.List getActualArgument();13 public org.omg.uml.behavioralelements.commonbehavior.ActionSequence getActionSequence();14 public void setActionSequence(org.omg.uml.behavioralelements.commonbehavior.ActionSequence newValue);15 }16