/** */ 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 'Ext Rule'. * * *

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getExtRule() * @model * @generated */ public interface ExtRule 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#getExtRule_Rulenumber() * @model * @generated */ int getRulenumber(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.ExtRule#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#getExtRule_Rulevariant() * @model * @generated */ String getRulevariant(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.ExtRule#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#getExtRule_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.ExtRule#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Ruleext' attribute. * *

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

* * @return the value of the 'Ruleext' attribute. * @see #setRuleext(int) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getExtRule_Ruleext() * @model * @generated */ int getRuleext(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.ExtRule#getRuleext Ruleext}' attribute. * * * @param value the new value of the 'Ruleext' attribute. * @see #getRuleext() * @generated */ void setRuleext(int value); /** * Returns the value of the 'Elements' containment reference list. * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.Atom}. * *

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

* * @return the value of the 'Elements' containment reference list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getExtRule_Elements() * @model containment="true" * @generated */ EList getElements(); } // ExtRule