/** * <copyright> * </copyright> * * $Id$ */ package br.puc.molic; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Connection</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link br.puc.molic.Connection#getLabel <em>Label</em>}</li> * <li>{@link br.puc.molic.Connection#getSource <em>Source</em>}</li> * <li>{@link br.puc.molic.Connection#getTarget <em>Target</em>}</li> * </ul> * </p> * * @see br.puc.molic.MolicPackage#getConnection() * @model interface="true" abstract="true" * @generated */ public interface Connection extends EObject { /** * Returns the value of the '<em><b>Label</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' attribute. * @see #setLabel(String) * @see br.puc.molic.MolicPackage#getConnection_Label() * @model * @generated */ String getLabel(); /** * Sets the value of the '{@link br.puc.molic.Connection#getLabel <em>Label</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label</em>' attribute. * @see #getLabel() * @generated */ void setLabel(String value); /** * 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(Element) * @see br.puc.molic.MolicPackage#getConnection_Source() * @model * @generated */ Element getSource(); /** * Sets the value of the '{@link br.puc.molic.Connection#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(Element 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(Element) * @see br.puc.molic.MolicPackage#getConnection_Target() * @model * @generated */ Element getTarget(); /** * Sets the value of the '{@link br.puc.molic.Connection#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(Element value); } // Connection