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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNode() * @model * @generated */ public interface Node extends Symbol { /** * Returns the value of the 'Named' attribute. * * * @return the value of the 'Named' attribute. * @see #setNamed(boolean) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNode_Named() * @model * @generated */ boolean isNamed(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Node#isNamed Named}' attribute. * * * @param value the new value of the 'Named' attribute. * @see #isNamed() * @generated */ void setNamed(boolean value); } // Node