/** */ 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 '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); /** * Returns the value of the 'Variable' containment reference. * * * @return the value of the 'Variable' containment reference. * @see #setVariable(Variable) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding_Variable() * @model containment="true" transient="true" * @generated */ Variable 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(Variable value); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.LetBinding#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Type' reference. * * * @return the value of the 'Type' reference. * @see #setType(Symbol) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getLetBinding_Type() * @model * @generated */ Symbol getType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.LetBinding#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(Symbol value); } // LetBinding