KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.foundation.core;
2
3 public interface AContainerResidentElement extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.foundation.core.Component container, org.omg.uml.foundation.core.ElementResidence residentElement);
5     public org.omg.uml.foundation.core.Component getContainer(org.omg.uml.foundation.core.ElementResidence residentElement);
6     public java.util.Collection JavaDoc getResidentElement(org.omg.uml.foundation.core.Component container);
7     public boolean add(org.omg.uml.foundation.core.Component container, org.omg.uml.foundation.core.ElementResidence residentElement);
8     public boolean remove(org.omg.uml.foundation.core.Component container, org.omg.uml.foundation.core.ElementResidence residentElement);
9 }
10
Popular Tags