KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.foundation.core;
2
3 public interface ATypeTypedValue extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.foundation.core.TagDefinition type, org.omg.uml.foundation.core.TaggedValue typedValue);
5     public org.omg.uml.foundation.core.TagDefinition getType(org.omg.uml.foundation.core.TaggedValue typedValue);
6     public java.util.Collection JavaDoc getTypedValue(org.omg.uml.foundation.core.TagDefinition type);
7     public boolean add(org.omg.uml.foundation.core.TagDefinition type, org.omg.uml.foundation.core.TaggedValue typedValue);
8     public boolean remove(org.omg.uml.foundation.core.TagDefinition type, org.omg.uml.foundation.core.TaggedValue typedValue);
9 }
10
Popular Tags