/** */ package rba.core; /** * * A representation of the model object 'Content State'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getContentState() * @model abstract="true" * @generated */ public interface ContentState extends RuleObject { /** * Returns the value of the 'Value' containment reference. * * * * * * @return the value of the 'Value' containment reference. * @see #setValue(Expression) * @see rba.core.RBACorePackage#getContentState_Value() * @model containment="true" required="true" * @generated */ Expression getValue(); /** * Sets the value of the '{@link rba.core.ContentState#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Expression value); /** * Returns the value of the 'Owner' container reference. * It is bidirectional and its opposite is '{@link rba.core.Content#getStates States}'. * * * * * * @return the value of the 'Owner' container reference. * @see #setOwner(Content) * @see rba.core.RBACorePackage#getContentState_Owner() * @see rba.core.Content#getStates * @model opposite="states" transient="false" * @generated */ Content getOwner(); /** * Sets the value of the '{@link rba.core.ContentState#getOwner Owner}' container reference. * * * @param value the new value of the 'Owner' container reference. * @see #getOwner() * @generated */ void setOwner(Content value); } // ContentState