1 package org.omg.uml.foundation.core;2 3 public interface Parameter extends org.omg.uml.foundation.core.ModelElement {4 public org.omg.uml.foundation.datatypes.Expression getDefaultValue();5 public void setDefaultValue(org.omg.uml.foundation.datatypes.Expression newValue);6 public org.omg.uml.foundation.datatypes.ParameterDirectionKind getKind();7 public void setKind(org.omg.uml.foundation.datatypes.ParameterDirectionKind newValue);8 public org.omg.uml.foundation.core.BehavioralFeature getBehavioralFeature();9 public void setBehavioralFeature(org.omg.uml.foundation.core.BehavioralFeature newValue);10 public org.omg.uml.foundation.core.Classifier getType();11 public void setType(org.omg.uml.foundation.core.Classifier newValue);12 }13