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

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getBnfEntry() * @model * @generated */ public interface BnfEntry extends EObject { /** * Returns the value of the 'Sectionheader' containment reference. * *

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

* * @return the value of the 'Sectionheader' containment reference. * @see #setSectionheader(SectionHeading) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getBnfEntry_Sectionheader() * @model containment="true" * @generated */ SectionHeading getSectionheader(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.BnfEntry#getSectionheader Sectionheader}' containment reference. * * * @param value the new value of the 'Sectionheader' containment reference. * @see #getSectionheader() * @generated */ void setSectionheader(SectionHeading value); /** * Returns the value of the 'Rule' containment reference. * *

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

* * @return the value of the 'Rule' containment reference. * @see #setRule(Rule) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getBnfEntry_Rule() * @model containment="true" * @generated */ Rule getRule(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.BnfEntry#getRule Rule}' containment reference. * * * @param value the new value of the 'Rule' containment reference. * @see #getRule() * @generated */ void setRule(Rule value); /** * Returns the value of the 'Comment' containment reference. * *

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

* * @return the value of the 'Comment' containment reference. * @see #setComment(Comment) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getBnfEntry_Comment() * @model containment="true" * @generated */ Comment getComment(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.BnfEntry#getComment Comment}' containment reference. * * * @param value the new value of the 'Comment' containment reference. * @see #getComment() * @generated */ void setComment(Comment value); } // BnfEntry