blob: 342515a92bf80bea741bc430baca338716c9098f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package simpleuml;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Enumeration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link simpleuml.Enumeration#getOwnedLiteral <em>Owned Literal</em>}</li>
* </ul>
* </p>
*
* @see simpleuml.SimpleumlPackage#getEnumeration()
* @model
* @generated
*/
public interface Enumeration extends Type {
/**
* Returns the value of the '<em><b>Owned Literal</b></em>' containment reference list.
* The list contents are of type {@link simpleuml.EnumerationLiteral}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Literal</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>Owned Literal</em>' containment reference list.
* @see simpleuml.SimpleumlPackage#getEnumeration_OwnedLiteral()
* @model containment="true"
* @generated
*/
EList<EnumerationLiteral> getOwnedLiteral();
} // Enumeration