KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.foundation.core;
2
3 public interface AConstrainedElementConstraint extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(org.omg.uml.foundation.core.ModelElement constrainedElement, org.omg.uml.foundation.core.Constraint constraint);
5     public java.util.List JavaDoc getConstrainedElement(org.omg.uml.foundation.core.Constraint constraint);
6     public java.util.Collection JavaDoc getConstraint(org.omg.uml.foundation.core.ModelElement constrainedElement);
7     public boolean add(org.omg.uml.foundation.core.ModelElement constrainedElement, org.omg.uml.foundation.core.Constraint constraint);
8     public boolean remove(org.omg.uml.foundation.core.ModelElement constrainedElement, org.omg.uml.foundation.core.Constraint constraint);
9 }
10
Popular Tags