1 package org.omg.uml.foundation.extensionmechanisms;2 3 public interface AModelElementTaggedValue extends javax.jmi.reflect.RefAssociation {4 public boolean exists(org.omg.uml.foundation.core.ModelElement modelElement, org.omg.uml.foundation.extensionmechanisms.TaggedValue taggedValue);5 public org.omg.uml.foundation.core.ModelElement getModelElement(org.omg.uml.foundation.extensionmechanisms.TaggedValue taggedValue);6 public java.util.Collection getTaggedValue(org.omg.uml.foundation.core.ModelElement modelElement);7 public boolean add(org.omg.uml.foundation.core.ModelElement modelElement, org.omg.uml.foundation.extensionmechanisms.TaggedValue taggedValue);8 public boolean remove(org.omg.uml.foundation.core.ModelElement modelElement, org.omg.uml.foundation.extensionmechanisms.TaggedValue taggedValue);9 }10