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

* The following features are supported: *

*

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

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

* * @return the value of the 'Content' attribute. * @see #setContent(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getComment_Content() * @model * @generated */ String getContent(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Comment#getContent Content}' attribute. * * * @param value the new value of the 'Content' attribute. * @see #getContent() * @generated */ void setContent(String value); } // Comment