1 package org.omg.uml.foundation.extensionmechanisms;2 3 public interface TaggedValue extends javax.jmi.reflect.RefObject {4 public java.lang.String getTag();5 public void setTag(java.lang.String newValue);6 public java.lang.String getValue();7 public void setValue(java.lang.String newValue);8 public org.omg.uml.foundation.extensionmechanisms.Stereotype getStereotype();9 public void setStereotype(org.omg.uml.foundation.extensionmechanisms.Stereotype newValue);10 public org.omg.uml.foundation.core.ModelElement getModelElement();11 public void setModelElement(org.omg.uml.foundation.core.ModelElement newValue);12 }13