source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/ebnf/Import.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: 3.2 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>Import</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.Import#getImportURI <em>Import URI</em>}</li>
16 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.Import#getGrammarType <em>Grammar Type</em>}</li>
17 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.Import#getLabel <em>Label</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getImport()
22 * @model
23 * @generated
24 */
25public interface Import extends EObject
26{
27  /**
28   * Returns the value of the '<em><b>Import URI</b></em>' attribute.
29   * <!-- begin-user-doc -->
30   * <p>
31   * If the meaning of the '<em>Import URI</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>Import URI</em>' attribute.
36   * @see #setImportURI(String)
37   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getImport_ImportURI()
38   * @model
39   * @generated
40   */
41  String getImportURI();
42
43  /**
44   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Import#getImportURI <em>Import URI</em>}' attribute.
45   * <!-- begin-user-doc -->
46   * <!-- end-user-doc -->
47   * @param value the new value of the '<em>Import URI</em>' attribute.
48   * @see #getImportURI()
49   * @generated
50   */
51  void setImportURI(String value);
52
53  /**
54   * Returns the value of the '<em><b>Grammar Type</b></em>' attribute.
55   * <!-- begin-user-doc -->
56   * <p>
57   * If the meaning of the '<em>Grammar Type</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>Grammar Type</em>' attribute.
62   * @see #setGrammarType(String)
63   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getImport_GrammarType()
64   * @model
65   * @generated
66   */
67  String getGrammarType();
68
69  /**
70   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Import#getGrammarType <em>Grammar Type</em>}' attribute.
71   * <!-- begin-user-doc -->
72   * <!-- end-user-doc -->
73   * @param value the new value of the '<em>Grammar Type</em>' attribute.
74   * @see #getGrammarType()
75   * @generated
76   */
77  void setGrammarType(String value);
78
79  /**
80   * Returns the value of the '<em><b>Label</b></em>' attribute.
81   * <!-- begin-user-doc -->
82   * <p>
83   * If the meaning of the '<em>Label</em>' attribute isn't clear,
84   * there really should be more of a description here...
85   * </p>
86   * <!-- end-user-doc -->
87   * @return the value of the '<em>Label</em>' attribute.
88   * @see #setLabel(String)
89   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getImport_Label()
90   * @model
91   * @generated
92   */
93  String getLabel();
94
95  /**
96   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.Import#getLabel <em>Label</em>}' attribute.
97   * <!-- begin-user-doc -->
98   * <!-- end-user-doc -->
99   * @param value the new value of the '<em>Label</em>' attribute.
100   * @see #getLabel()
101   * @generated
102   */
103  void setLabel(String value);
104
105} // Import
Note: See TracBrowser for help on using the repository browser.