blob: 473ac5e2375e6af40df7f8c0e03a698d5754e78f [file] [log] [blame]
/*
* Copyright (c) 2005, 2007 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: Manifestation.java,v 1.4 2007/10/23 16:12:31 jbruck Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Manifestation</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A manifestation is the concrete physical rendering of one or more model elements by an artifact.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.Manifestation#getUtilizedElement <em>Utilized Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getManifestation()
* @model
* @generated
*/
public interface Manifestation
extends Abstraction {
/**
* Returns the value of the '<em><b>Utilized Element</b></em>' reference.
* <p>
* This feature subsets the following features:
* <ul>
* <li>'{@link org.eclipse.uml2.uml.Dependency#getSuppliers() <em>Supplier</em>}'</li>
* </ul>
* </p>
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The model element that is utilized in the manifestation in an Artifact.
* <!-- end-model-doc -->
* @return the value of the '<em>Utilized Element</em>' reference.
* @see #setUtilizedElement(PackageableElement)
* @see org.eclipse.uml2.uml.UMLPackage#getManifestation_UtilizedElement()
* @model required="true" ordered="false"
* @generated
*/
PackageableElement getUtilizedElement();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.Manifestation#getUtilizedElement <em>Utilized Element</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Utilized Element</em>' reference.
* @see #getUtilizedElement()
* @generated
*/
void setUtilizedElement(PackageableElement value);
} // Manifestation