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

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator() * @model * @generated */ public interface RuleCombinator extends MergeRule { /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RuleCombinator#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'LABEL' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

* * @return the value of the 'LABEL' attribute list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator_LABEL() * @model unique="false" * @generated */ EList getLABEL(); } // RuleCombinator