1 package org.omg.uml.foundation.core;2 3 public interface APresentationSubject extends javax.jmi.reflect.RefAssociation {4 public boolean exists(org.omg.uml.foundation.core.PresentationElement presentation, org.omg.uml.foundation.core.ModelElement subject);5 public java.util.Collection getPresentation(org.omg.uml.foundation.core.ModelElement subject);6 public java.util.Collection getSubject(org.omg.uml.foundation.core.PresentationElement presentation);7 public boolean add(org.omg.uml.foundation.core.PresentationElement presentation, org.omg.uml.foundation.core.ModelElement subject);8 public boolean remove(org.omg.uml.foundation.core.PresentationElement presentation, org.omg.uml.foundation.core.ModelElement subject);9 }10