source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/ebnf/StringRule.java @ 61

Last change on this file since 61 was 61, checked in by hkaulbersch, 10 years ago

initial commit

  • Property svn:mime-type set to text/plain
File size: 2.3 KB
Line 
1/**
2 */
3package de.ugoe.cs.swe.bnftools.ebnf;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>String Rule</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * <ul>
15 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getLiteral <em>Literal</em>}</li>
16 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getColon <em>Colon</em>}</li>
17 * </ul>
18 * </p>
19 *
20 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getStringRule()
21 * @model
22 * @generated
23 */
24public interface StringRule extends EObject
25{
26  /**
27   * Returns the value of the '<em><b>Literal</b></em>' attribute.
28   * <!-- begin-user-doc -->
29   * <p>
30   * If the meaning of the '<em>Literal</em>' attribute isn't clear,
31   * there really should be more of a description here...
32   * </p>
33   * <!-- end-user-doc -->
34   * @return the value of the '<em>Literal</em>' attribute.
35   * @see #setLiteral(String)
36   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getStringRule_Literal()
37   * @model
38   * @generated
39   */
40  String getLiteral();
41
42  /**
43   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getLiteral <em>Literal</em>}' attribute.
44   * <!-- begin-user-doc -->
45   * <!-- end-user-doc -->
46   * @param value the new value of the '<em>Literal</em>' attribute.
47   * @see #getLiteral()
48   * @generated
49   */
50  void setLiteral(String value);
51
52  /**
53   * Returns the value of the '<em><b>Colon</b></em>' attribute.
54   * <!-- begin-user-doc -->
55   * <p>
56   * If the meaning of the '<em>Colon</em>' attribute isn't clear,
57   * there really should be more of a description here...
58   * </p>
59   * <!-- end-user-doc -->
60   * @return the value of the '<em>Colon</em>' attribute.
61   * @see #setColon(String)
62   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getStringRule_Colon()
63   * @model
64   * @generated
65   */
66  String getColon();
67
68  /**
69   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.StringRule#getColon <em>Colon</em>}' attribute.
70   * <!-- begin-user-doc -->
71   * <!-- end-user-doc -->
72   * @param value the new value of the '<em>Colon</em>' attribute.
73   * @see #getColon()
74   * @generated
75   */
76  void setColon(String value);
77
78} // StringRule
Note: See TracBrowser for help on using the repository browser.