/******************************************************************************* * Copyright (c) 2018 IRT AESE (IRT Saint Exupéry). * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0 * * Contributors: * Arnaud Dieumegard (IRT Saint Exupéry) - initial API and implementation * Pierre Virelizier (IRT Saint Exupéry) * Julien Baclet (IRT Saint Exupéry) * Pierre Gaufillet (IRT Saint Exupéry) *******************************************************************************/ /** */ package com.irtsaintexupery.pseim.seim; /** * * A representation of the model object 'Link'. * * *

* The following features are supported: *

* * * @see com.irtsaintexupery.pseim.seim.SeimPackage#getLink() * @model * @generated */ public interface Link extends GraphElement { /** * Returns the value of the 'Src' reference. * *

* If the meaning of the 'Src' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Src' reference. * @see #setSrc(Port) * @see com.irtsaintexupery.pseim.seim.SeimPackage#getLink_Src() * @model * @generated */ Port getSrc(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.seim.Link#getSrc Src}' reference. * * * @param value the new value of the 'Src' reference. * @see #getSrc() * @generated */ void setSrc(Port value); /** * Returns the value of the 'Dst' reference. * *

* If the meaning of the 'Dst' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Dst' reference. * @see #setDst(Port) * @see com.irtsaintexupery.pseim.seim.SeimPackage#getLink_Dst() * @model * @generated */ Port getDst(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.seim.Link#getDst Dst}' reference. * * * @param value the new value of the 'Dst' reference. * @see #getDst() * @generated */ void setDst(Port value); } // Link