/** */ package rba.core; /** * * A representation of the model object 'Abstract Constraint'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getAbstractConstraint() * @model abstract="true" * @generated */ public interface AbstractConstraint extends PackagableElement { /** * Returns the value of the 'Expression' containment reference. * * * * * * @return the value of the 'Expression' containment reference. * @see #setExpression(Expression) * @see rba.core.RBACorePackage#getAbstractConstraint_Expression() * @model containment="true" required="true" * @generated */ Expression getExpression(); /** * Sets the value of the '{@link rba.core.AbstractConstraint#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(Expression value); } // AbstractConstraint