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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTNot() * @model * @generated */ public interface SMTNot extends SMTBoolOperation { /** * Returns the value of the 'Operand' containment reference. * *

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

* * @return the value of the 'Operand' containment reference. * @see #setOperand(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTNot_Operand() * @model containment="true" * @generated */ SMTTerm getOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTNot#getOperand Operand}' containment reference. * * * @param value the new value of the 'Operand' containment reference. * @see #getOperand() * @generated */ void setOperand(SMTTerm value); } // SMTNot