/** * generated by Xtext 2.26.0 */ package com.minres.rdl.rdl; /** * * A representation of the model object 'Explicit Property Assignment'. * * *

* The following features are supported: *

* * * @see com.minres.rdl.rdl.RdlPackage#getExplicitPropertyAssignment() * @model * @generated */ public interface ExplicitPropertyAssignment extends PropertyAssignment, DefaultProperyAssignment { /** * Returns the value of the 'Modifier' attribute. * The literals are from the enumeration {@link com.minres.rdl.rdl.PropertyModifier}. * * * @return the value of the 'Modifier' attribute. * @see com.minres.rdl.rdl.PropertyModifier * @see #setModifier(PropertyModifier) * @see com.minres.rdl.rdl.RdlPackage#getExplicitPropertyAssignment_Modifier() * @model * @generated */ PropertyModifier getModifier(); /** * Sets the value of the '{@link com.minres.rdl.rdl.ExplicitPropertyAssignment#getModifier Modifier}' attribute. * * * @param value the new value of the 'Modifier' attribute. * @see com.minres.rdl.rdl.PropertyModifier * @see #getModifier() * @generated */ void setModifier(PropertyModifier value); /** * Returns the value of the 'Name' attribute. * The literals are from the enumeration {@link com.minres.rdl.rdl.PropertyEnum}. * * * @return the value of the 'Name' attribute. * @see com.minres.rdl.rdl.PropertyEnum * @see #setName(PropertyEnum) * @see com.minres.rdl.rdl.RdlPackage#getExplicitPropertyAssignment_Name() * @model * @generated */ PropertyEnum getName(); /** * Sets the value of the '{@link com.minres.rdl.rdl.ExplicitPropertyAssignment#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see com.minres.rdl.rdl.PropertyEnum * @see #getName() * @generated */ void setName(PropertyEnum value); /** * Returns the value of the 'Rhs' containment reference. * * * @return the value of the 'Rhs' containment reference. * @see #setRhs(PropertyAssignmentRhs) * @see com.minres.rdl.rdl.RdlPackage#getExplicitPropertyAssignment_Rhs() * @model containment="true" * @generated */ PropertyAssignmentRhs getRhs(); /** * Sets the value of the '{@link com.minres.rdl.rdl.ExplicitPropertyAssignment#getRhs Rhs}' containment reference. * * * @param value the new value of the 'Rhs' containment reference. * @see #getRhs() * @generated */ void setRhs(PropertyAssignmentRhs value); } // ExplicitPropertyAssignment