/** */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'Function'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getFunction() * @model abstract="true" * @generated */ public interface Function extends Functor { /** * Returns the value of the 'Result Type' reference. * * * @return the value of the 'Result Type' reference. * @see #setResultType(Datatype) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getFunction_ResultType() * @model * @generated */ Datatype getResultType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Function#getResultType Result Type}' reference. * * * @param value the new value of the 'Result Type' reference. * @see #getResultType() * @generated */ void setResultType(Datatype value); } // Function