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

* The following features are supported: *

* * * @see com.minres.rdl.rdl.RdlPackage#getPostPropertyAssignment() * @model * @generated */ public interface PostPropertyAssignment extends PropertyAssignment { /** * Returns the value of the 'Instance' containment reference. * * * @return the value of the 'Instance' containment reference. * @see #setInstance(InstanceRef) * @see com.minres.rdl.rdl.RdlPackage#getPostPropertyAssignment_Instance() * @model containment="true" * @generated */ InstanceRef getInstance(); /** * Sets the value of the '{@link com.minres.rdl.rdl.PostPropertyAssignment#getInstance Instance}' containment reference. * * * @param value the new value of the 'Instance' containment reference. * @see #getInstance() * @generated */ void setInstance(InstanceRef value); /** * Returns the value of the 'Property Enum' attribute. * The literals are from the enumeration {@link com.minres.rdl.rdl.PropertyEnum}. * * * @return the value of the 'Property Enum' attribute. * @see com.minres.rdl.rdl.PropertyEnum * @see #setPropertyEnum(PropertyEnum) * @see com.minres.rdl.rdl.RdlPackage#getPostPropertyAssignment_PropertyEnum() * @model * @generated */ PropertyEnum getPropertyEnum(); /** * Sets the value of the '{@link com.minres.rdl.rdl.PostPropertyAssignment#getPropertyEnum Property Enum}' attribute. * * * @param value the new value of the 'Property Enum' attribute. * @see com.minres.rdl.rdl.PropertyEnum * @see #getPropertyEnum() * @generated */ void setPropertyEnum(PropertyEnum value); /** * Returns the value of the 'Property' reference. * * * @return the value of the 'Property' reference. * @see #setProperty(PropertyDefinition) * @see com.minres.rdl.rdl.RdlPackage#getPostPropertyAssignment_Property() * @model * @generated */ PropertyDefinition getProperty(); /** * Sets the value of the '{@link com.minres.rdl.rdl.PostPropertyAssignment#getProperty Property}' reference. * * * @param value the new value of the 'Property' reference. * @see #getProperty() * @generated */ void setProperty(PropertyDefinition 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#getPostPropertyAssignment_Rhs() * @model containment="true" * @generated */ PropertyAssignmentRhs getRhs(); /** * Sets the value of the '{@link com.minres.rdl.rdl.PostPropertyAssignment#getRhs Rhs}' containment reference. * * * @param value the new value of the 'Rhs' containment reference. * @see #getRhs() * @generated */ void setRhs(PropertyAssignmentRhs value); } // PostPropertyAssignment