/** * <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.bpmn2.bpmdi; import org.obeonetwork.dsl.bpmn2.BaseElement; import org.obeonetwork.dsl.dd.di.DiagramElement; import org.obeonetwork.dsl.dd.di.LabeledEdge; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>BPMN Edge</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getLabel <em>Label</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getBpmnElement <em>Bpmn Element</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getSourceElement <em>Source Element</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getTargetElement <em>Target Element</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getMessageVisibleKind <em>Message Visible Kind</em>}</li> * </ul> * * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge() * @model * @generated */ public interface BPMNEdge extends LabeledEdge { /** * Returns the value of the '<em><b>Label</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' containment reference. * @see #setLabel(BPMNLabel) * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge_Label() * @model containment="true" ordered="false" * @generated */ BPMNLabel getLabel(); /** * Sets the value of the '{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getLabel <em>Label</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label</em>' containment reference. * @see #getLabel() * @generated */ void setLabel(BPMNLabel value); /** * Returns the value of the '<em><b>Bpmn Element</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bpmn Element</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bpmn Element</em>' reference. * @see #setBpmnElement(BaseElement) * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge_BpmnElement() * @model ordered="false" * @generated */ BaseElement getBpmnElement(); /** * Sets the value of the '{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getBpmnElement <em>Bpmn Element</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bpmn Element</em>' reference. * @see #getBpmnElement() * @generated */ void setBpmnElement(BaseElement value); /** * Returns the value of the '<em><b>Source Element</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source Element</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 Element</em>' reference. * @see #setSourceElement(DiagramElement) * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge_SourceElement() * @model ordered="false" * @generated */ DiagramElement getSourceElement(); /** * Sets the value of the '{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getSourceElement <em>Source Element</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source Element</em>' reference. * @see #getSourceElement() * @generated */ void setSourceElement(DiagramElement value); /** * Returns the value of the '<em><b>Target Element</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target Element</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 Element</em>' reference. * @see #setTargetElement(DiagramElement) * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge_TargetElement() * @model ordered="false" * @generated */ DiagramElement getTargetElement(); /** * Sets the value of the '{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getTargetElement <em>Target Element</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target Element</em>' reference. * @see #getTargetElement() * @generated */ void setTargetElement(DiagramElement value); /** * Returns the value of the '<em><b>Message Visible Kind</b></em>' attribute. * The literals are from the enumeration {@link org.obeonetwork.dsl.bpmn2.bpmdi.MessageVisibleKind}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Message Visible Kind</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Message Visible Kind</em>' attribute. * @see org.obeonetwork.dsl.bpmn2.bpmdi.MessageVisibleKind * @see #setMessageVisibleKind(MessageVisibleKind) * @see org.obeonetwork.dsl.bpmn2.bpmdi.BpmnDiPackage#getBPMNEdge_MessageVisibleKind() * @model ordered="false" * @generated */ MessageVisibleKind getMessageVisibleKind(); /** * Sets the value of the '{@link org.obeonetwork.dsl.bpmn2.bpmdi.BPMNEdge#getMessageVisibleKind <em>Message Visible Kind</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Message Visible Kind</em>' attribute. * @see org.obeonetwork.dsl.bpmn2.bpmdi.MessageVisibleKind * @see #getMessageVisibleKind() * @generated */ void setMessageVisibleKind(MessageVisibleKind value); } // BPMNEdge