/** */ package org.eclipse.viatra.solver.language.solverLanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Let Expression'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetExpression() * @model * @generated */ public interface LetExpression extends Expression { /** * Returns the value of the 'Bindings' containment reference list. * The list contents are of type {@link org.eclipse.viatra.solver.language.solverLanguage.LetBinding}. * * * @return the value of the 'Bindings' containment reference list. * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetExpression_Bindings() * @model containment="true" * @generated */ EList getBindings(); /** * Returns the value of the 'Body' containment reference. * * * @return the value of the 'Body' containment reference. * @see #setBody(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetExpression_Body() * @model containment="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.LetExpression#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(Expression value); } // LetExpression