blob: b73b33c7d82c1b2c56472247e03326a3cdc1cf37 [file] [log] [blame]
/**
* Copyright (c) 2007, 2013 THALES GLOBAL SERVICES.
* 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:
* Obeo - initial API and implementation
*
*/
package org.eclipse.sirius.diagram;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Edge Target</b></em>'. <!-- end-user-doc -->
*
* <!-- begin-model-doc --> The target of a ViewEdge. <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.sirius.diagram.EdgeTarget#getOutgoingEdges <em>
* Outgoing Edges</em>}</li>
* <li>{@link org.eclipse.sirius.diagram.EdgeTarget#getIncomingEdges <em>
* Incoming Edges</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.diagram.DiagramPackage#getEdgeTarget()
* @model abstract="true"
* @generated
*/
public interface EdgeTarget extends EObject {
/**
* Returns the value of the '<em><b>Outgoing Edges</b></em>' reference list.
* The list contents are of type {@link org.eclipse.sirius.diagram.DEdge}.
* It is bidirectional and its opposite is '
* {@link org.eclipse.sirius.diagram.DEdge#getSourceNode
* <em>Source Node</em>}'. <!-- begin-user-doc --> <!-- end-user-doc -->
* <!-- begin-model-doc --> The outgoing view edges. <!-- end-model-doc -->
*
* @return the value of the '<em>Outgoing Edges</em>' reference list.
* @see org.eclipse.sirius.diagram.DiagramPackage#getEdgeTarget_OutgoingEdges()
* @see org.eclipse.sirius.diagram.DEdge#getSourceNode
* @model opposite="sourceNode"
* @generated
*/
EList<DEdge> getOutgoingEdges();
/**
* Returns the value of the '<em><b>Incoming Edges</b></em>' reference list.
* The list contents are of type {@link org.eclipse.sirius.diagram.DEdge}.
* It is bidirectional and its opposite is '
* {@link org.eclipse.sirius.diagram.DEdge#getTargetNode
* <em>Target Node</em>}'. <!-- begin-user-doc --> <!-- end-user-doc -->
* <!-- begin-model-doc --> The incoming view edges. <!-- end-model-doc -->
*
* @return the value of the '<em>Incoming Edges</em>' reference list.
* @see org.eclipse.sirius.diagram.DiagramPackage#getEdgeTarget_IncomingEdges()
* @see org.eclipse.sirius.diagram.DEdge#getTargetNode
* @model opposite="targetNode"
* @generated
*/
EList<DEdge> getIncomingEdges();
} // EdgeTarget