blob: b385c24fa2297605cef5d06b0e431db24dd5cbb0 [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 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: TypedElement.java,v 1.8 2005/05/18 21:13:19 khussey Exp $
*/
package org.eclipse.uml2;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Typed Element</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A typed element is an element that has a type that serves as a constraint on the range of values the element can represent. Typed element is an abstract metaclass.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.TypedElement#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getTypedElement()
* @model abstract="true"
* @generated
*/
public interface TypedElement extends NamedElement{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The type of the TypedElement.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Type)
* @see org.eclipse.uml2.UML2Package#getTypedElement_Type()
* @model
* @generated
*/
Type getType();
/**
* Sets the value of the '{@link org.eclipse.uml2.TypedElement#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Type value);
} // TypedElement