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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getIfThenElse() * @model * @generated */ public interface IfThenElse extends Term { /** * Returns the value of the 'Condition' containment reference. * *

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

* * @return the value of the 'Condition' containment reference. * @see #setCondition(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getIfThenElse_Condition() * @model containment="true" required="true" * @generated */ Term getCondition(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.IfThenElse#getCondition Condition}' containment reference. * * * @param value the new value of the 'Condition' containment reference. * @see #getCondition() * @generated */ void setCondition(Term value); /** * Returns the value of the 'If True' containment reference. * *

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

* * @return the value of the 'If True' containment reference. * @see #setIfTrue(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getIfThenElse_IfTrue() * @model containment="true" required="true" * @generated */ Term getIfTrue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.IfThenElse#getIfTrue If True}' containment reference. * * * @param value the new value of the 'If True' containment reference. * @see #getIfTrue() * @generated */ void setIfTrue(Term value); /** * Returns the value of the 'If False' containment reference. * *

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

* * @return the value of the 'If False' containment reference. * @see #setIfFalse(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getIfThenElse_IfFalse() * @model containment="true" required="true" * @generated */ Term getIfFalse(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.IfThenElse#getIfFalse If False}' containment reference. * * * @param value the new value of the 'If False' containment reference. * @see #getIfFalse() * @generated */ void setIfFalse(Term value); } // IfThenElse