/** */ package de.ugoe.cs.swe.bnftools.ebnf; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Repeat Range'. * * *

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange() * @model * @generated */ public interface RepeatRange extends EObject { /** * Returns the value of the 'From' attribute. * *

* If the meaning of the 'From' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'From' attribute. * @see #setFrom(int) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange_From() * @model * @generated */ int getFrom(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatRange#getFrom From}' attribute. * * * @param value the new value of the 'From' attribute. * @see #getFrom() * @generated */ void setFrom(int value); /** * Returns the value of the 'To' attribute. * *

* If the meaning of the 'To' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'To' attribute. * @see #setTo(int) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange_To() * @model * @generated */ int getTo(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatRange#getTo To}' attribute. * * * @param value the new value of the 'To' attribute. * @see #getTo() * @generated */ void setTo(int value); } // RepeatRange