blob: b7e6c6dcd840bfe2fc6a86c1d80e3980e50d4528 [file] [log] [blame]
/*
* Copyright (c) 2005, 2015 IBM Corporation, CEA, 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
* Kenn Hussey (CEA) - 327039, 351774, 418466, 451350
* Christian W. Damus (CEA) - 251963
*
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Typed Element</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A TypedElement is a NamedElement that may have a Type specified for it.
* <p>From package UML::CommonStructure.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.TypedElement#getType <em>Type</em>}</li>
* </ul>
*
* @see org.eclipse.uml2.uml.UMLPackage#getTypedElement()
* @model abstract="true"
* @generated
*/
public interface TypedElement
extends NamedElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The type of the TypedElement.
* <p>From package UML::CommonStructure.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Type)
* @see org.eclipse.uml2.uml.UMLPackage#getTypedElement_Type()
* @model ordered="false"
* @generated
*/
Type getType();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.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