/** */ package de.ugoe.cs.swe.bnftools.ebnf; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Repeated Sequence'. * * *

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatedSequence() * @model * @generated */ public interface RepeatedSequence extends EObject { /** * Returns the value of the 'Definitions' containment reference list. * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.DefinitionList}. * *

* If the meaning of the 'Definitions' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Definitions' containment reference list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatedSequence_Definitions() * @model containment="true" * @generated */ EList getDefinitions(); /** * Returns the value of the 'Morethanonce' attribute. * *

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

* * @return the value of the 'Morethanonce' attribute. * @see #setMorethanonce(boolean) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatedSequence_Morethanonce() * @model * @generated */ boolean isMorethanonce(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatedSequence#isMorethanonce Morethanonce}' attribute. * * * @param value the new value of the 'Morethanonce' attribute. * @see #isMorethanonce() * @generated */ void setMorethanonce(boolean value); } // RepeatedSequence