blob: ec8ea5ca11308615f3c33031f41b3e6a660490c2 [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: ComponentRealization.java,v 1.3 2006/05/12 20:38:06 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Component Realization</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The realization concept is specialized to (optionally) define the classifiers that realize the contract offered by a component in terms of its provided and required interfaces. The component forms an abstraction from these various classifiers.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.ComponentRealization#getAbstraction <em>Abstraction</em>}</li>
* <li>{@link org.eclipse.uml2.uml.ComponentRealization#getRealizingClassifier <em>Realizing Classifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getComponentRealization()
* @model
* @generated
*/
public interface ComponentRealization
extends Realization {
/**
* Returns the value of the '<em><b>Abstraction</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.Component#getRealizations <em>Realization</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Abstraction</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The Component that owns this ComponentRealization and which is implemented by its realizing classifiers.
* <!-- end-model-doc -->
* @return the value of the '<em>Abstraction</em>' container reference.
* @see #setAbstraction(Component)
* @see org.eclipse.uml2.uml.UMLPackage#getComponentRealization_Abstraction()
* @see org.eclipse.uml2.uml.Component#getRealizations
* @model opposite="realization" ordered="false"
* @generated
*/
Component getAbstraction();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.ComponentRealization#getAbstraction <em>Abstraction</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Abstraction</em>' container reference.
* @see #getAbstraction()
* @generated
*/
void setAbstraction(Component value);
/**
* Returns the value of the '<em><b>Realizing Classifier</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Realizing Classifier</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A classifier that is involved in the implementation of the Component that owns this ComponentRealization.
* <!-- end-model-doc -->
* @return the value of the '<em>Realizing Classifier</em>' reference.
* @see #setRealizingClassifier(Classifier)
* @see org.eclipse.uml2.uml.UMLPackage#getComponentRealization_RealizingClassifier()
* @model required="true" ordered="false"
* @generated
*/
Classifier getRealizingClassifier();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.ComponentRealization#getRealizingClassifier <em>Realizing Classifier</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Realizing Classifier</em>' reference.
* @see #getRealizingClassifier()
* @generated
*/
void setRealizingClassifier(Classifier value);
} // ComponentRealization