/** */ package hu.bme.mit.inf.dslreasoner.smtLanguage; /** * * A representation of the model object 'SMT Equals'. * * *

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTEquals() * @model * @generated */ public interface SMTEquals extends SMTRelation { /** * 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(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTEquals_LeftOperand() * @model containment="true" * @generated */ SMTTerm getLeftOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTEquals#getLeftOperand Left Operand}' containment reference. * * * @param value the new value of the 'Left Operand' containment reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(SMTTerm 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(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTEquals_RightOperand() * @model containment="true" * @generated */ SMTTerm getRightOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTEquals#getRightOperand Right Operand}' containment reference. * * * @param value the new value of the 'Right Operand' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(SMTTerm value); } // SMTEquals