source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/ebnf/RuleCombinator.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.0 KB
Line 
1/**
2 */
3package de.ugoe.cs.swe.bnftools.ebnf;
4
5import org.eclipse.emf.common.util.EList;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Rule Combinator</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.RuleCombinator#getName <em>Name</em>}</li>
16 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.RuleCombinator#getLABEL <em>LABEL</em>}</li>
17 * </ul>
18 * </p>
19 *
20 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator()
21 * @model
22 * @generated
23 */
24public interface RuleCombinator extends MergeRule
25{
26  /**
27   * Returns the value of the '<em><b>Name</b></em>' attribute.
28   * <!-- begin-user-doc -->
29   * <p>
30   * If the meaning of the '<em>Name</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>Name</em>' attribute.
35   * @see #setName(String)
36   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator_Name()
37   * @model
38   * @generated
39   */
40  String getName();
41
42  /**
43   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RuleCombinator#getName <em>Name</em>}' attribute.
44   * <!-- begin-user-doc -->
45   * <!-- end-user-doc -->
46   * @param value the new value of the '<em>Name</em>' attribute.
47   * @see #getName()
48   * @generated
49   */
50  void setName(String value);
51
52  /**
53   * Returns the value of the '<em><b>LABEL</b></em>' attribute list.
54   * The list contents are of type {@link java.lang.String}.
55   * <!-- begin-user-doc -->
56   * <p>
57   * If the meaning of the '<em>LABEL</em>' attribute list isn't clear,
58   * there really should be more of a description here...
59   * </p>
60   * <!-- end-user-doc -->
61   * @return the value of the '<em>LABEL</em>' attribute list.
62   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRuleCombinator_LABEL()
63   * @model unique="false"
64   * @generated
65   */
66  EList<String> getLABEL();
67
68} // RuleCombinator
Note: See TracBrowser for help on using the repository browser.