KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.foundation.core;
2
3 public interface ANamespaceOwnedElement extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.foundation.core.Namespace namespace, org.omg.uml.foundation.core.ModelElement ownedElement);
5     public org.omg.uml.foundation.core.Namespace getNamespace(org.omg.uml.foundation.core.ModelElement ownedElement);
6     public java.util.Collection JavaDoc getOwnedElement(org.omg.uml.foundation.core.Namespace namespace);
7     public boolean add(org.omg.uml.foundation.core.Namespace namespace, org.omg.uml.foundation.core.ModelElement ownedElement);
8     public boolean remove(org.omg.uml.foundation.core.Namespace namespace, org.omg.uml.foundation.core.ModelElement ownedElement);
9 }
10
Popular Tags