/** */ package org.eclipse.viatra.solver.language.solverLanguage; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Symbol'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getSymbol() * @model abstract="true" * @generated */ public interface Symbol extends EObject { /** * 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#getSymbol_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Symbol#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // Symbol