1 package org.omg.uml.behavioralelements.commonbehavior;2 3 public interface Argument extends org.omg.uml.foundation.core.ModelElement {4 public org.omg.uml.foundation.datatypes.Expression getValue();5 public void setValue(org.omg.uml.foundation.datatypes.Expression newValue);6 public org.omg.uml.behavioralelements.commonbehavior.Action getAction();7 public void setAction(org.omg.uml.behavioralelements.commonbehavior.Action newValue);8 }9