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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getExactMultiplicity() * @model * @generated */ public interface ExactMultiplicity extends Multiplicity { /** * Returns the value of the 'Value' attribute. * * * @return the value of the 'Value' attribute. * @see #setValue(int) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getExactMultiplicity_Value() * @model * @generated */ int getValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ExactMultiplicity#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(int value); } // ExactMultiplicity