/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Transitive Closure'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getTransitiveClosure() * @model * @generated */ public interface TransitiveClosure extends EObject { /** * 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#getTransitiveClosure_LeftOperand() * @model containment="true" * @generated */ Term getLeftOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TransitiveClosure#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#getTransitiveClosure_RightOperand() * @model containment="true" * @generated */ Term getRightOperand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TransitiveClosure#getRightOperand Right Operand}' containment reference. * * * @param value the new value of the 'Right Operand' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(Term value); /** * Returns the value of the 'Relation' reference. * *

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

* * @return the value of the 'Relation' reference. * @see #setRelation(Relation) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getTransitiveClosure_Relation() * @model * @generated */ Relation getRelation(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TransitiveClosure#getRelation Relation}' reference. * * * @param value the new value of the 'Relation' reference. * @see #getRelation() * @generated */ void setRelation(Relation value); } // TransitiveClosure