blob: bcff6f037cdb6c402276ae706773dfba7d37c0ad [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
*
* $Id: EnumerationLiteral.java,v 1.4 2006/05/12 20:38:03 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Enumeration Literal</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An enumeration literal is a user-defined data value for an enumeration.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.EnumerationLiteral#getEnumeration <em>Enumeration</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getEnumerationLiteral()
* @model
* @generated
*/
public interface EnumerationLiteral
extends InstanceSpecification {
/**
* Returns the value of the '<em><b>Enumeration</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.Enumeration#getOwnedLiterals <em>Owned Literal</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The enumeration that this literal belongs to.
* The Enumeration that this EnumerationLiteral is a member of.
* <!-- end-model-doc -->
* @return the value of the '<em>Enumeration</em>' container reference.
* @see #setEnumeration(Enumeration)
* @see org.eclipse.uml2.uml.UMLPackage#getEnumerationLiteral_Enumeration()
* @see org.eclipse.uml2.uml.Enumeration#getOwnedLiterals
* @model opposite="ownedLiteral" ordered="false"
* @generated
*/
Enumeration getEnumeration();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.EnumerationLiteral#getEnumeration <em>Enumeration</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Enumeration</em>' container reference.
* @see #getEnumeration()
* @generated
*/
void setEnumeration(Enumeration value);
} // EnumerationLiteral