/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; /** * * A representation of the model object 'More Or Equal Than'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getMoreOrEqualThan() * @model * @generated */ public interface MoreOrEqualThan extends PrimitiveRelation { /** * 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(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getMoreOrEqualThan_LeftOperand() * @model containment="true" * @generated */ Term getLeftOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.MoreOrEqualThan#getLeftOperand Left Operand}' containment reference. * * * @param value the new value of the 'Left Operand' containment reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(Term 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(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getMoreOrEqualThan_RightOperand() * @model containment="true" * @generated */ Term getRightOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.MoreOrEqualThan#getRightOperand Right Operand}' containment reference. * * * @param value the new value of the 'Right Operand' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(Term value); } // MoreOrEqualThan