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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTIfCombinator() * @model * @generated */ public interface SMTIfCombinator extends SMTReasoningCombinator { /** * Returns the value of the 'Probe' containment reference. * *

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

* * @return the value of the 'Probe' containment reference. * @see #setProbe(ReasoningProbe) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTIfCombinator_Probe() * @model containment="true" * @generated */ ReasoningProbe getProbe(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTIfCombinator#getProbe Probe}' containment reference. * * * @param value the new value of the 'Probe' containment reference. * @see #getProbe() * @generated */ void setProbe(ReasoningProbe value); /** * Returns the value of the 'If Tactic' containment reference. * *

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

* * @return the value of the 'If Tactic' containment reference. * @see #setIfTactic(SMTReasoningTactic) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTIfCombinator_IfTactic() * @model containment="true" * @generated */ SMTReasoningTactic getIfTactic(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTIfCombinator#getIfTactic If Tactic}' containment reference. * * * @param value the new value of the 'If Tactic' containment reference. * @see #getIfTactic() * @generated */ void setIfTactic(SMTReasoningTactic value); /** * Returns the value of the 'Else Tactic' containment reference. * *

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

* * @return the value of the 'Else Tactic' containment reference. * @see #setElseTactic(SMTReasoningTactic) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTIfCombinator_ElseTactic() * @model containment="true" * @generated */ SMTReasoningTactic getElseTactic(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTIfCombinator#getElseTactic Else Tactic}' containment reference. * * * @param value the new value of the 'Else Tactic' containment reference. * @see #getElseTactic() * @generated */ void setElseTactic(SMTReasoningTactic value); } // SMTIfCombinator