KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.foundation.core;
2
3 public interface ADeploymentLocationResident extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.foundation.core.Node deploymentLocation, org.omg.uml.foundation.core.Component resident);
5     public java.util.Collection JavaDoc getDeploymentLocation(org.omg.uml.foundation.core.Component resident);
6     public java.util.Collection JavaDoc getResident(org.omg.uml.foundation.core.Node deploymentLocation);
7     public boolean add(org.omg.uml.foundation.core.Node deploymentLocation, org.omg.uml.foundation.core.Component resident);
8     public boolean remove(org.omg.uml.foundation.core.Node deploymentLocation, org.omg.uml.foundation.core.Component resident);
9 }
10
Popular Tags