1 package org.omg.uml.foundation.core;2 3 public interface Method extends org.omg.uml.foundation.core.BehavioralFeature {4 public org.omg.uml.foundation.datatypes.ProcedureExpression getBody();5 public void setBody(org.omg.uml.foundation.datatypes.ProcedureExpression newValue);6 public org.omg.uml.foundation.core.Operation getSpecification();7 public void setSpecification(org.omg.uml.foundation.core.Operation newValue);8 }9