blob: 32ea019f6648207d217e5645d878d32b8b5b906e [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 Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: Realization.java,v 1.2 2004/04/10 04:09:50 khussey Exp $
*/
package org.eclipse.uml2;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Realization</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.Realization#getAbstraction <em>Abstraction</em>}</li>
* <li>{@link org.eclipse.uml2.Realization#getRealizingClassifier <em>Realizing Classifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getRealization()
* @model
* @generated
*/
public interface Realization extends Abstraction{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Abstraction</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.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 -->
* @return the value of the '<em>Abstraction</em>' container reference.
* @see #setAbstraction(Component)
* @see org.eclipse.uml2.UML2Package#getRealization_Abstraction()
* @see org.eclipse.uml2.Component#getRealizations
* @model opposite="realization" volatile="true"
* @generated
*/
Component getAbstraction();
/**
* Sets the value of the '{@link org.eclipse.uml2.Realization#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 -->
* @return the value of the '<em>Realizing Classifier</em>' reference.
* @see #setRealizingClassifier(Classifier)
* @see org.eclipse.uml2.UML2Package#getRealization_RealizingClassifier()
* @model required="true" volatile="true"
* @generated
*/
Classifier getRealizingClassifier();
/**
* Sets the value of the '{@link org.eclipse.uml2.Realization#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);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getSources();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
Element getOwner();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getClients();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getSuppliers();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getTargets();
} // Realization