source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/ebnf/OptionalSequence.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: 1.3 KB
Line 
1/**
2 */
3package de.ugoe.cs.swe.bnftools.ebnf;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Optional Sequence</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * <ul>
17 *   <li>{@link de.ugoe.cs.swe.bnftools.ebnf.OptionalSequence#getDefinitionList <em>Definition List</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getOptionalSequence()
22 * @model
23 * @generated
24 */
25public interface OptionalSequence extends EObject
26{
27  /**
28   * Returns the value of the '<em><b>Definition List</b></em>' containment reference list.
29   * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.DefinitionList}.
30   * <!-- begin-user-doc -->
31   * <p>
32   * If the meaning of the '<em>Definition List</em>' containment reference list isn't clear,
33   * there really should be more of a description here...
34   * </p>
35   * <!-- end-user-doc -->
36   * @return the value of the '<em>Definition List</em>' containment reference list.
37   * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getOptionalSequence_DefinitionList()
38   * @model containment="true"
39   * @generated
40   */
41  EList<DefinitionList> getDefinitionList();
42
43} // OptionalSequence
Note: See TracBrowser for help on using the repository browser.