/** * generated by Xtext 2.21.0 */ package org.eclipse.viatra.solver.language.solverLanguage; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Let Binding'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding() * @model * @generated */ public interface LetBinding extends EObject { /** * Returns the value of the 'Variable' containment reference. * * * @return the value of the 'Variable' containment reference. * @see #setVariable(NamedElement) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding_Variable() * @model containment="true" * @generated */ NamedElement getVariable(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.LetBinding#getVariable Variable}' containment reference. * * * @param value the new value of the 'Variable' containment reference. * @see #getVariable() * @generated */ void setVariable(NamedElement value); /** * Returns the value of the 'Value' containment reference. * * * @return the value of the 'Value' containment reference. * @see #setValue(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding_Value() * @model containment="true" * @generated */ Expression getValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.LetBinding#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Expression value); } // LetBinding