/** * <copyright> * * Copyright (c) 2011-2013 Obeo. * 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 * * </copyright> */ package org.obeonetwork.dsl.dd.di; import org.eclipse.emf.common.util.EList; import org.obeonetwork.dsl.dd.dc.Point; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Edge</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.obeonetwork.dsl.dd.di.Edge#getSource <em>Source</em>}</li> * <li>{@link org.obeonetwork.dsl.dd.di.Edge#getTarget <em>Target</em>}</li> * <li>{@link org.obeonetwork.dsl.dd.di.Edge#getWaypoint <em>Waypoint</em>}</li> * </ul> * * @see org.obeonetwork.dsl.dd.di.DiPackage#getEdge() * @model abstract="true" * @generated */ public interface Edge extends DiagramElement { /** * Returns the value of the '<em><b>Source</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Source</em>' reference. * @see org.obeonetwork.dsl.dd.di.DiPackage#getEdge_Source() * @model transient="true" changeable="false" derived="true" ordered="false" * @generated */ DiagramElement getSource(); /** * Returns the value of the '<em><b>Target</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Target</em>' reference. * @see org.obeonetwork.dsl.dd.di.DiPackage#getEdge_Target() * @model transient="true" changeable="false" derived="true" ordered="false" * @generated */ DiagramElement getTarget(); /** * Returns the value of the '<em><b>Waypoint</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.dsl.dd.dc.Point}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Waypoint</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Waypoint</em>' containment reference list. * @see org.obeonetwork.dsl.dd.di.DiPackage#getEdge_Waypoint() * @model containment="true" lower="2" * @generated */ EList<Point> getWaypoint(); } // Edge