blob: 6a20e759ec253168fa1e7162c9bfebebe90751a9 [file] [log] [blame]
/*
* Copyright (c) 2005, 2013 IBM Corporation, Embarcadero Technologies, 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 (Embarcadero Technologies) - 205188
* Christian W. Damus (CEA) - 251963
*
*/
package org.eclipse.uml2.uml;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Directed Relationship</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A directed relationship represents a relationship between a collection of source model elements and a collection of target model elements.
* <p>From package UML (URI {@literal http://www.omg.org/spec/UML/20110701}).</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.DirectedRelationship#getSources <em>Source</em>}</li>
* <li>{@link org.eclipse.uml2.uml.DirectedRelationship#getTargets <em>Target</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getDirectedRelationship()
* @model abstract="true"
* @generated
*/
public interface DirectedRelationship
extends Relationship {
/**
* Returns the value of the '<em><b>Source</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.Element}.
* <p>
* This feature subsets the following features:
* <ul>
* <li>'{@link org.eclipse.uml2.uml.Relationship#getRelatedElements() <em>Related Element</em>}'</li>
* </ul>
* </p>
* This feature is a derived union.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Specifies the sources of the DirectedRelationship.
* <p>From package UML (URI {@literal http://www.omg.org/spec/UML/20110701}).</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Source</em>' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getDirectedRelationship_Source()
* @model required="true" transient="true" changeable="false" volatile="true" derived="true" ordered="false"
* @generated
*/
EList<Element> getSources();
/**
* Returns the value of the '<em><b>Target</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.Element}.
* <p>
* This feature subsets the following features:
* <ul>
* <li>'{@link org.eclipse.uml2.uml.Relationship#getRelatedElements() <em>Related Element</em>}'</li>
* </ul>
* </p>
* This feature is a derived union.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Specifies the targets of the DirectedRelationship.
* <p>From package UML (URI {@literal http://www.omg.org/spec/UML/20110701}).</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Target</em>' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getDirectedRelationship_Target()
* @model required="true" transient="true" changeable="false" volatile="true" derived="true" ordered="false"
* @generated
*/
EList<Element> getTargets();
} // DirectedRelationship