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

* The following features are supported: *

*

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

* 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#getSMTFunctionDeclaration_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#getSMTFunctionDeclaration_Range() * @model containment="true" * @generated */ SMTTypeReference getRange(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFunctionDeclaration#getRange Range}' containment reference. * * * @param value the new value of the 'Range' containment reference. * @see #getRange() * @generated */ void setRange(SMTTypeReference value); } // SMTFunctionDeclaration