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

* The following features are supported: *

*

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

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

* * @return the value of the 'Literal' attribute. * @see #setLiteral(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getStringRule_Literal() * @model * @generated */ String getLiteral(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getLiteral Literal}' attribute. * * * @param value the new value of the 'Literal' attribute. * @see #getLiteral() * @generated */ void setLiteral(String value); /** * Returns the value of the 'Colon' attribute. * *

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

* * @return the value of the 'Colon' attribute. * @see #setColon(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getStringRule_Colon() * @model * @generated */ String getColon(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getColon Colon}' attribute. * * * @param value the new value of the 'Colon' attribute. * @see #getColon() * @generated */ void setColon(String value); } // StringRule