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

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

initial commit

  • Property svn:mime-type set to text/plain
File size: 2.9 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>Hook 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.HookCombinator#getName <em>Name</em>}</li>
16 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.HookCombinator#getRuleext <em>Ruleext</em>}</li>
17 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.HookCombinator#getLABEL <em>LABEL</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getHookCombinator()
22 * @model
23 * @generated
24 */
25public interface HookCombinator extends MergeRule
26{
27  /**
28   * Returns the value of the '<em><b>Name</b></em>' attribute.
29   * <!-- begin-user-doc -->
30   * <p>
31   * If the meaning of the '<em>Name</em>' attribute isn't clear,
32   * there really should be more of a description here...
33   * </p>
34   * <!-- end-user-doc -->
35   * @return the value of the '<em>Name</em>' attribute.
36   * @see #setName(String)
37   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getHookCombinator_Name()
38   * @model
39   * @generated
40   */
41  String getName();
42
43  /**
44   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.HookCombinator#getName <em>Name</em>}' attribute.
45   * <!-- begin-user-doc -->
46   * <!-- end-user-doc -->
47   * @param value the new value of the '<em>Name</em>' attribute.
48   * @see #getName()
49   * @generated
50   */
51  void setName(String value);
52
53  /**
54   * Returns the value of the '<em><b>Ruleext</b></em>' attribute.
55   * <!-- begin-user-doc -->
56   * <p>
57   * If the meaning of the '<em>Ruleext</em>' attribute 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>Ruleext</em>' attribute.
62   * @see #setRuleext(int)
63   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getHookCombinator_Ruleext()
64   * @model
65   * @generated
66   */
67  int getRuleext();
68
69  /**
70   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.HookCombinator#getRuleext <em>Ruleext</em>}' attribute.
71   * <!-- begin-user-doc -->
72   * <!-- end-user-doc -->
73   * @param value the new value of the '<em>Ruleext</em>' attribute.
74   * @see #getRuleext()
75   * @generated
76   */
77  void setRuleext(int value);
78
79  /**
80   * Returns the value of the '<em><b>LABEL</b></em>' attribute list.
81   * The list contents are of type {@link java.lang.String}.
82   * <!-- begin-user-doc -->
83   * <p>
84   * If the meaning of the '<em>LABEL</em>' attribute list isn't clear,
85   * there really should be more of a description here...
86   * </p>
87   * <!-- end-user-doc -->
88   * @return the value of the '<em>LABEL</em>' attribute list.
89   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getHookCombinator_LABEL()
90   * @model unique="false"
91   * @generated
92   */
93  EList<String> getLABEL();
94
95} // HookCombinator
Note: See TracBrowser for help on using the repository browser.