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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTFunctionDefinition() * @model * @generated */ public interface SMTFunctionDefinition extends SMTSymbolicDeclaration { /** * Returns the value of the 'Parameters' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTSortedVariable}. * *

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

* * @return the value of the 'Parameters' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTFunctionDefinition_Parameters() * @model containment="true" * @generated */ EList getParameters(); /** * Returns the value of the 'Range' containment reference. * *

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

* * @return the value of the 'Range' containment reference. * @see #setRange(SMTTypeReference) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTFunctionDefinition_Range() * @model containment="true" * @generated */ SMTTypeReference getRange(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFunctionDefinition#getRange Range}' containment reference. * * * @param value the new value of the 'Range' containment reference. * @see #getRange() * @generated */ void setRange(SMTTypeReference value); /** * Returns the value of the 'Value' containment reference. * *

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

* * @return the value of the 'Value' containment reference. * @see #setValue(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTFunctionDefinition_Value() * @model containment="true" * @generated */ SMTTerm getValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFunctionDefinition#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(SMTTerm value); } // SMTFunctionDefinition