Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/ComplexGateway.java')
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/ComplexGateway.java118
1 files changed, 118 insertions, 0 deletions
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/ComplexGateway.java b/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/ComplexGateway.java
new file mode 100644
index 00000000000..2892fc71175
--- /dev/null
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/ComplexGateway.java
@@ -0,0 +1,118 @@
+/**
+ */
+package org.eclipse.papyrus.bpmn.BPMNProfile;
+
+import java.util.Map;
+
+import org.eclipse.emf.common.util.DiagnosticChain;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Complex Gateway</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ComplexGateway#getDefault <em>Default</em>}</li>
+ * <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ComplexGateway#getActivationCondition <em>Activation Condition</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getComplexGateway()
+ * @model
+ * @generated
+ */
+public interface ComplexGateway extends NonExclusiveGateway {
+ /**
+ * Returns the value of the '<em><b>Default</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Default</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Default</em>' reference.
+ * @see #setDefault(SequenceFlow)
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getComplexGateway_Default()
+ * @model ordered="false"
+ * @generated
+ */
+ SequenceFlow getDefault();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ComplexGateway#getDefault <em>Default</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Default</em>' reference.
+ * @see #getDefault()
+ * @generated
+ */
+ void setDefault(SequenceFlow value);
+
+ /**
+ * Returns the value of the '<em><b>Activation Condition</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Activation Condition</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Activation Condition</em>' reference.
+ * @see #setActivationCondition(BPMNExpression)
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getComplexGateway_ActivationCondition()
+ * @model ordered="false"
+ * @generated
+ */
+ BPMNExpression getActivationCondition();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ComplexGateway#getActivationCondition <em>Activation Condition</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Activation Condition</em>' reference.
+ * @see #getActivationCondition()
+ * @generated
+ */
+ void setActivationCondition(BPMNExpression value);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * complexGateway::/default : SequenceFlow [0..1] = an outgoing control flow with guard "else"
+ * @param diagnostics The chain of diagnostics to which problems are to be appended.
+ * @param context The cache of context-specific information.
+ * <!-- end-model-doc -->
+ * @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='complexGateway.default'"
+ * @generated
+ */
+ boolean complexGatewaydefault(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * complexGateway::/activationCondition : BPMNExpression [0..1] = JoinNode::joinSpec
+ * @param diagnostics The chain of diagnostics to which problems are to be appended.
+ * @param context The cache of context-specific information.
+ * <!-- end-model-doc -->
+ * @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='complexGateway.activationCondition'"
+ * @generated
+ */
+ boolean complexGatewayactivationCondition(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * complexGateway::joinSpec = "BPMNInclusive" when applied to join nodes
+ * @param diagnostics The chain of diagnostics to which problems are to be appended.
+ * @param context The cache of context-specific information.
+ * <!-- end-model-doc -->
+ * @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='complexGateway.joinSpec'"
+ * @generated
+ */
+ boolean complexGatewayjoinSpec(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+} // ComplexGateway

Back to the top