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

Last change on this file since 95 was 95, checked in by phdmakk, 8 years ago

+ generated resources

  • Property svn:mime-type set to text/plain
File size: 2.1 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>Repeat Range</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.RepeatRange#getFrom <em>From</em>}</li>
16 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatRange#getTo <em>To</em>}</li>
17 * </ul>
18 * </p>
19 *
20 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange()
21 * @model
22 * @generated
23 */
24public interface RepeatRange extends EObject
25{
26  /**
27   * Returns the value of the '<em><b>From</b></em>' attribute.
28   * <!-- begin-user-doc -->
29   * <p>
30   * If the meaning of the '<em>From</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>From</em>' attribute.
35   * @see #setFrom(int)
36   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange_From()
37   * @model
38   * @generated
39   */
40  int getFrom();
41
42  /**
43   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatRange#getFrom <em>From</em>}' attribute.
44   * <!-- begin-user-doc -->
45   * <!-- end-user-doc -->
46   * @param value the new value of the '<em>From</em>' attribute.
47   * @see #getFrom()
48   * @generated
49   */
50  void setFrom(int value);
51
52  /**
53   * Returns the value of the '<em><b>To</b></em>' attribute.
54   * <!-- begin-user-doc -->
55   * <p>
56   * If the meaning of the '<em>To</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>To</em>' attribute.
61   * @see #setTo(int)
62   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getRepeatRange_To()
63   * @model
64   * @generated
65   */
66  int getTo();
67
68  /**
69   * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.RepeatRange#getTo <em>To</em>}' attribute.
70   * <!-- begin-user-doc -->
71   * <!-- end-user-doc -->
72   * @param value the new value of the '<em>To</em>' attribute.
73   * @see #getTo()
74   * @generated
75   */
76  void setTo(int value);
77
78} // RepeatRange
Note: See TracBrowser for help on using the repository browser.