Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4261ab4a1db8d478aacfc1248c84bfc24935469a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 */
package org.eclipse.osee.framework.core.dsl.oseeDsl;

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>XOsee Enum Type</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.osee.framework.core.dsl.oseeDsl.XOseeEnumType#getEnumEntries <em>Enum Entries</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.osee.framework.core.dsl.oseeDsl.OseeDslPackage#getXOseeEnumType()
 * @model
 * @generated
 */
public interface XOseeEnumType extends OseeType
{
  /**
    * Returns the value of the '<em><b>Enum Entries</b></em>' containment reference list.
    * The list contents are of type {@link org.eclipse.osee.framework.core.dsl.oseeDsl.XOseeEnumEntry}.
    * <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Enum Entries</em>' containment reference list isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
    * @return the value of the '<em>Enum Entries</em>' containment reference list.
    * @see org.eclipse.osee.framework.core.dsl.oseeDsl.OseeDslPackage#getXOseeEnumType_EnumEntries()
    * @model containment="true"
    * @generated
    */
  EList<XOseeEnumEntry> getEnumEntries();

} // XOseeEnumType

Back to the top