/** * <copyright> * * Copyright (c) 2010 SAP AG. * 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: * Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation * * </copyright> */ package org.eclipse.bpmn2; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Sequence Flow</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.bpmn2.SequenceFlow#getConditionExpression <em>Condition Expression</em>}</li> * <li>{@link org.eclipse.bpmn2.SequenceFlow#isIsImmediate <em>Is Immediate</em>}</li> * <li>{@link org.eclipse.bpmn2.SequenceFlow#getSourceRef <em>Source Ref</em>}</li> * <li>{@link org.eclipse.bpmn2.SequenceFlow#getTargetRef <em>Target Ref</em>}</li> * <li>{@link org.eclipse.bpmn2.SequenceFlow#getExecutionListeners <em>Execution Listeners</em>}</li> * </ul> * </p> * * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow() * @model extendedMetaData="name='tSequenceFlow' kind='elementOnly'" * @generated */ public interface SequenceFlow extends FlowElement { /** * Returns the value of the '<em><b>Condition Expression</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Condition Expression</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>Condition Expression</em>' containment reference. * @see #setConditionExpression(FormalExpression) * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow_ConditionExpression() * @model containment="true" ordered="false" * extendedMetaData="kind='element' name='conditionExpression' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ FormalExpression getConditionExpression(); /** * Sets the value of the '{@link org.eclipse.bpmn2.SequenceFlow#getConditionExpression <em>Condition Expression</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Condition Expression</em>' containment reference. * @see #getConditionExpression() * @generated */ void setConditionExpression(FormalExpression value); /** * Returns the value of the '<em><b>Is Immediate</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Is Immediate</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Is Immediate</em>' attribute. * @see #setIsImmediate(boolean) * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow_IsImmediate() * @model ordered="false" * extendedMetaData="kind='attribute' name='isImmediate'" * @generated */ boolean isIsImmediate(); /** * Sets the value of the '{@link org.eclipse.bpmn2.SequenceFlow#isIsImmediate <em>Is Immediate</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Is Immediate</em>' attribute. * @see #isIsImmediate() * @generated */ void setIsImmediate(boolean value); /** * Returns the value of the '<em><b>Source Ref</b></em>' reference. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.FlowNode#getOutgoing <em>Outgoing</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source Ref</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 Ref</em>' reference. * @see #setSourceRef(FlowNode) * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow_SourceRef() * @see org.eclipse.bpmn2.FlowNode#getOutgoing * @model opposite="outgoing" resolveProxies="false" required="true" ordered="false" * extendedMetaData="kind='attribute' name='sourceRef'" * @generated */ FlowNode getSourceRef(); /** * Sets the value of the '{@link org.eclipse.bpmn2.SequenceFlow#getSourceRef <em>Source Ref</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source Ref</em>' reference. * @see #getSourceRef() * @generated */ void setSourceRef(FlowNode value); /** * Returns the value of the '<em><b>Target Ref</b></em>' reference. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.FlowNode#getIncoming <em>Incoming</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target Ref</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 Ref</em>' reference. * @see #setTargetRef(FlowNode) * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow_TargetRef() * @see org.eclipse.bpmn2.FlowNode#getIncoming * @model opposite="incoming" resolveProxies="false" required="true" ordered="false" * extendedMetaData="kind='attribute' name='targetRef'" * @generated */ FlowNode getTargetRef(); /** * Sets the value of the '{@link org.eclipse.bpmn2.SequenceFlow#getTargetRef <em>Target Ref</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target Ref</em>' reference. * @see #getTargetRef() * @generated */ void setTargetRef(FlowNode value); /** * Returns the value of the '<em><b>Execution Listeners</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.bpmn2.ActivitiListener}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Execution Listeners</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>Execution Listeners</em>' containment reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getSequenceFlow_ExecutionListeners() * @model containment="true" * @generated */ List<ActivitiListener> getExecutionListeners(); } // SequenceFlow