org.omg.dd.di.Edge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.omg.bpmn.model Show documentation
Show all versions of org.omg.bpmn.model Show documentation
Ecore and generated code for org.omg.bpmn2
The newest version!
/*
* Copyright (c) 2012 - 2024 Data In Motion and others.
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Mark Hoffmann - initial API and implementation
*/
package org.omg.dd.di;
import org.eclipse.emf.common.util.EList;
import org.omg.dd.dc.Point;
import org.osgi.annotation.versioning.ProviderType;
/**
*
* A representation of the model object 'Edge'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.dd.di.Edge#getSource Source}
* - {@link org.omg.dd.di.Edge#getTarget Target}
* - {@link org.omg.dd.di.Edge#getWaypoint Waypoint}
*
*
* @see org.omg.dd.di.DiPackage#getEdge()
* @model abstract="true"
* extendedMetaData="name='Edge' kind='elementOnly'"
* @generated
*/
@ProviderType
public interface Edge extends DiagramElement {
/**
* Returns the value of the 'Source' reference.
*
*
* @return the value of the 'Source' reference.
* @see org.omg.dd.di.DiPackage#getEdge_Source()
* @model transient="true" changeable="false" derived="true" ordered="false"
* @generated
*/
DiagramElement getSource();
/**
* Returns the value of the 'Target' reference.
*
*
* @return the value of the 'Target' reference.
* @see org.omg.dd.di.DiPackage#getEdge_Target()
* @model transient="true" changeable="false" derived="true" ordered="false"
* @generated
*/
DiagramElement getTarget();
/**
* Returns the value of the 'Waypoint' containment reference list.
* The list contents are of type {@link org.omg.dd.dc.Point}.
*
*
* @return the value of the 'Waypoint' containment reference list.
* @see org.omg.dd.di.DiPackage#getEdge_Waypoint()
* @model containment="true" lower="2"
* extendedMetaData="kind='element' name='waypoint' namespace='http://www.omg.org/spec/DD/20100524/DI'"
* @generated
*/
EList getWaypoint();
} // Edge