/** * * * * $Id$ */ package org.eclipse.papyrus.infra.constraints; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Constraint Descriptor'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getConstraintDescriptor() * @model abstract="true" * @generated */ public interface ConstraintDescriptor extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getConstraintDescriptor_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.constraints.ConstraintDescriptor#getName Name}' attribute. * * * * @param value * the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Display' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.papyrus.infra.constraints.DisplayUnit#getConstraints Constraints}'. * *

* If the meaning of the 'Display' container reference isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Display' container reference. * @see #setDisplay(DisplayUnit) * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getConstraintDescriptor_Display() * @see org.eclipse.papyrus.infra.constraints.DisplayUnit#getConstraints * @model opposite="constraints" transient="false" * @generated */ DisplayUnit getDisplay(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.constraints.ConstraintDescriptor#getDisplay Display}' container reference. * * * * @param value * the new value of the 'Display' container reference. * @see #getDisplay() * @generated */ void setDisplay(DisplayUnit value); /** * Returns the value of the 'Overrideable' attribute. * The default value is "true". * *

* If the meaning of the 'Overrideable' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Overrideable' attribute. * @see #setOverrideable(boolean) * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getConstraintDescriptor_Overrideable() * @model default="true" required="true" * @generated */ boolean isOverrideable(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.constraints.ConstraintDescriptor#isOverrideable Overrideable}' attribute. * * * * @param value * the new value of the 'Overrideable' attribute. * @see #isOverrideable() * @generated */ void setOverrideable(boolean value); /** * Returns the value of the 'Overridden Constraints' reference list. * The list contents are of type {@link org.eclipse.papyrus.infra.constraints.SimpleConstraint}. * *

* If the meaning of the 'Overridden Constraints' reference list isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Overridden Constraints' reference list. * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getConstraintDescriptor_OverriddenConstraints() * @model * @generated */ EList getOverriddenConstraints(); } // ConstraintDescriptor