blob: 5f665a852cd3ce7efe32b96d412f6caea0238791 [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: Relationship.java,v 1.5 2006/12/14 15:49:27 khussey Exp $
*/
package org.eclipse.uml2.uml;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Relationship</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Relationship is an abstract concept that specifies some kind of relationship between elements.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.Relationship#getRelatedElements <em>Related Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getRelationship()
* @model abstract="true"
* @generated
*/
public interface Relationship
extends Element {
/**
* Returns the value of the '<em><b>Related Element</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.Element}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Specifies the elements related by the Relationship.
* <!-- end-model-doc -->
* @return the value of the '<em>Related Element</em>' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getRelationship_RelatedElement()
* @model type="org.eclipse.uml2.uml.Element" required="true" transient="true" changeable="false" volatile="true" derived="true" ordered="false"
* @generated
*/
EList<Element> getRelatedElements();
} // Relationship