KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > foundation > core > TaggedValue


1 package org.omg.uml.foundation.core;
2
3 public interface TaggedValue extends org.omg.uml.foundation.core.ModelElement {
4     public java.util.Collection JavaDoc getDataValue();
5     public org.omg.uml.foundation.core.ModelElement getModelElement();
6     public void setModelElement(org.omg.uml.foundation.core.ModelElement newValue);
7     public org.omg.uml.foundation.core.TagDefinition getType();
8     public void setType(org.omg.uml.foundation.core.TagDefinition newValue);
9     public java.util.Collection JavaDoc getReferenceValue();
10 }
11
Popular Tags