/** */ package hu.bme.mit.inf.dslreasoner.alloyLanguage; /** * * A representation of the model object 'ALS Plus'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSPlus() * @model * @generated */ public interface ALSPlus extends ALSTerm { /** * Returns the value of the 'Left Operand' containment reference. * *

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

* * @return the value of the 'Left Operand' containment reference. * @see #setLeftOperand(ALSTerm) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSPlus_LeftOperand() * @model containment="true" * @generated */ ALSTerm getLeftOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSPlus#getLeftOperand Left Operand}' containment reference. * * * @param value the new value of the 'Left Operand' containment reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(ALSTerm value); /** * Returns the value of the 'Right Operand' containment reference. * *

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

* * @return the value of the 'Right Operand' containment reference. * @see #setRightOperand(ALSTerm) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSPlus_RightOperand() * @model containment="true" * @generated */ ALSTerm getRightOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSPlus#getRightOperand Right Operand}' containment reference. * * * @param value the new value of the 'Right Operand' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(ALSTerm value); } // ALSPlus