blob: db39ae802cadda7a2df676bda1b1e90f7c80d20d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007-2013 THALES GLOBAL SERVICES.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.tests.sample.migration.migrationmodeler;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Edge</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Edge#getEdgeRepresentations
* <em>Edge Representations</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Edge#getSource
* <em>Source</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Edge#getTarget
* <em>Target</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEdge()
* @model
* @generated
*/
public interface Edge extends GraphicalElement {
/**
* Returns the value of the '<em><b>Edge Representations</b></em>'
* containment reference list. The list contents are of type
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.EdgeRepresentation}
* . <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Edge Representations</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>Edge Representations</em>' containment
* reference list.
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEdge_EdgeRepresentations()
* @model containment="true" required="true"
* @generated
*/
EList<EdgeRepresentation> getEdgeRepresentations();
/**
* 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 #setSource(GraphicalElement)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEdge_Source()
* @model
* @generated
*/
GraphicalElement getSource();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Edge#getSource
* <em>Source</em>}' reference. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @param value
* the new value of the '<em>Source</em>' reference.
* @see #getSource()
* @generated
*/
void setSource(GraphicalElement value);
/**
* 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 #setTarget(GraphicalElement)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEdge_Target()
* @model
* @generated
*/
GraphicalElement getTarget();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Edge#getTarget
* <em>Target</em>}' reference. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @param value
* the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(GraphicalElement value);
} // Edge