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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getExactScope() * @model * @generated */ public interface ExactScope extends ScopeDeclaration { /** * Returns the value of the 'Size' attribute. * * * @return the value of the 'Size' attribute. * @see #setSize(int) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getExactScope_Size() * @model * @generated */ int getSize(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ExactScope#getSize Size}' attribute. * * * @param value the new value of the 'Size' attribute. * @see #getSize() * @generated */ void setSize(int value); } // ExactScope