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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTITE() * @model * @generated */ public interface SMTITE extends SMTTerm { /** * 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(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTITE_Condition() * @model containment="true" * @generated */ SMTTerm getCondition(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTITE#getCondition Condition}' containment reference. * * * @param value the new value of the 'Condition' containment reference. * @see #getCondition() * @generated */ void setCondition(SMTTerm value); /** * Returns the value of the 'If' containment reference. * *

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

* * @return the value of the 'If' containment reference. * @see #setIf(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTITE_If() * @model containment="true" * @generated */ SMTTerm getIf(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTITE#getIf If}' containment reference. * * * @param value the new value of the 'If' containment reference. * @see #getIf() * @generated */ void setIf(SMTTerm value); /** * Returns the value of the 'Else' containment reference. * *

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

* * @return the value of the 'Else' containment reference. * @see #setElse(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTITE_Else() * @model containment="true" * @generated */ SMTTerm getElse(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTITE#getElse Else}' containment reference. * * * @param value the new value of the 'Else' containment reference. * @see #getElse() * @generated */ void setElse(SMTTerm value); } // SMTITE