1 package org.omg.uml.foundation.core;2 3 public interface ElementResidence extends javax.jmi.reflect.RefObject {4 public org.omg.uml.foundation.datatypes.VisibilityKind getVisibility();5 public void setVisibility(org.omg.uml.foundation.datatypes.VisibilityKind newValue);6 public org.omg.uml.foundation.core.ModelElement getResident();7 public void setResident(org.omg.uml.foundation.core.ModelElement newValue);8 public org.omg.uml.foundation.core.Component getContainer();9 public void setContainer(org.omg.uml.foundation.core.Component newValue);10 }11