1 package org.omg.uml.modelmanagement;2 3 public interface ElementImport 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 java.lang.String getAlias();7 public void setAlias(java.lang.String newValue);8 public boolean isSpecification();9 public void setSpecification(boolean newValue);10 public org.omg.uml.modelmanagement.UmlPackage getUmlPackage();11 public void setUmlPackage(org.omg.uml.modelmanagement.UmlPackage newValue);12 public org.omg.uml.foundation.core.ModelElement getImportedElement();13 public void setImportedElement(org.omg.uml.foundation.core.ModelElement newValue);14 }15