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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTFailIfCombinator() * @model * @generated */ public interface SMTFailIfCombinator 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#getSMTFailIfCombinator_Probe() * @model containment="true" * @generated */ ReasoningProbe getProbe(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFailIfCombinator#getProbe Probe}' containment reference. * * * @param value the new value of the 'Probe' containment reference. * @see #getProbe() * @generated */ void setProbe(ReasoningProbe value); } // SMTFailIfCombinator