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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getScopeDeclaration() * @model * @generated */ public interface ScopeDeclaration extends Statement { /** * 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#getScopeDeclaration_Type() * @model * @generated */ Symbol getType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ScopeDeclaration#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(Symbol value); } // ScopeDeclaration