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

* The following features are supported: *

*

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

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

* * @return the value of the 'Tactic' containment reference. * @see #setTactic(SMTReasoningTactic) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTTryForCombinator_Tactic() * @model containment="true" * @generated */ SMTReasoningTactic getTactic(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTTryForCombinator#getTactic Tactic}' containment reference. * * * @param value the new value of the 'Tactic' containment reference. * @see #getTactic() * @generated */ void setTactic(SMTReasoningTactic value); /** * Returns the value of the 'Time' attribute. * *

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

* * @return the value of the 'Time' attribute. * @see #setTime(int) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTTryForCombinator_Time() * @model * @generated */ int getTime(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTTryForCombinator#getTime Time}' attribute. * * * @param value the new value of the 'Time' attribute. * @see #getTime() * @generated */ void setTime(int value); } // SMTTryForCombinator