/** */ package hu.bme.mit.inf.dslreasoner.smtLanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'SMT Let'. * * *

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTLet() * @model * @generated */ public interface SMTLet extends SMTTerm { /** * Returns the value of the 'Inline Constant Definitions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTInlineConstantDefinition}. * *

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

* * @return the value of the 'Inline Constant Definitions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTLet_InlineConstantDefinitions() * @model containment="true" * @generated */ EList getInlineConstantDefinitions(); /** * Returns the value of the 'Term' containment reference. * *

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

* * @return the value of the 'Term' containment reference. * @see #setTerm(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTLet_Term() * @model containment="true" * @generated */ SMTTerm getTerm(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTLet#getTerm Term}' containment reference. * * * @param value the new value of the 'Term' containment reference. * @see #getTerm() * @generated */ void setTerm(SMTTerm value); } // SMTLet