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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getNot() * @model * @generated */ public interface Not extends BoolOperation { /** * 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(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getNot_Operand() * @model containment="true" * @generated */ Term getOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Not#getOperand Operand}' containment reference. * * * @param value the new value of the 'Operand' containment reference. * @see #getOperand() * @generated */ void setOperand(Term value); } // Not