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

* The following features are supported: *

*

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

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

* * @return the value of the 'Rulenumber' attribute. * @see #setRulenumber(int) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRule_Rulenumber() * @model * @generated */ int getRulenumber(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Rule#getRulenumber Rulenumber}' attribute. * * * @param value the new value of the 'Rulenumber' attribute. * @see #getRulenumber() * @generated */ void setRulenumber(int value); /** * Returns the value of the 'Rulevariant' attribute. * *

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

* * @return the value of the 'Rulevariant' attribute. * @see #setRulevariant(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRule_Rulevariant() * @model * @generated */ String getRulevariant(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Rule#getRulevariant Rulevariant}' attribute. * * * @param value the new value of the 'Rulevariant' attribute. * @see #getRulevariant() * @generated */ void setRulevariant(String value); /** * 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#getRule_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Rule#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Definition List' containment reference. * *

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

* * @return the value of the 'Definition List' containment reference. * @see #setDefinitionList(DefinitionList) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRule_DefinitionList() * @model containment="true" * @generated */ DefinitionList getDefinitionList(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Rule#getDefinitionList Definition List}' containment reference. * * * @param value the new value of the 'Definition List' containment reference. * @see #getDefinitionList() * @generated */ void setDefinitionList(DefinitionList value); } // Rule