Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.bpmn2/src/org/eclipse/bpmn2/GlobalChoreographyTask.java')
-rw-r--r--tests/org.eclipse.bpmn2/src/org/eclipse/bpmn2/GlobalChoreographyTask.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/tests/org.eclipse.bpmn2/src/org/eclipse/bpmn2/GlobalChoreographyTask.java b/tests/org.eclipse.bpmn2/src/org/eclipse/bpmn2/GlobalChoreographyTask.java
deleted file mode 100644
index 4c6a7d4ea..000000000
--- a/tests/org.eclipse.bpmn2/src/org/eclipse/bpmn2/GlobalChoreographyTask.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/**
- * <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;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Global Choreography Task</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.bpmn2.GlobalChoreographyTask#getInitiatingParticipantRef <em>Initiating Participant Ref</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.bpmn2.Bpmn2Package#getGlobalChoreographyTask()
- * @model extendedMetaData="name='tGlobalChoreographyTask' kind='elementOnly'"
- * @generated
- */
-public interface GlobalChoreographyTask extends Choreography {
- /**
- * Returns the value of the '<em><b>Initiating Participant Ref</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Initiating Participant 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>Initiating Participant Ref</em>' reference.
- * @see #setInitiatingParticipantRef(Participant)
- * @see org.eclipse.bpmn2.Bpmn2Package#getGlobalChoreographyTask_InitiatingParticipantRef()
- * @model required="true" ordered="false"
- * extendedMetaData="kind='attribute' name='initiatingParticipantRef'"
- * @generated
- */
- Participant getInitiatingParticipantRef();
-
- /**
- * Sets the value of the '{@link org.eclipse.bpmn2.GlobalChoreographyTask#getInitiatingParticipantRef <em>Initiating Participant Ref</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Initiating Participant Ref</em>' reference.
- * @see #getInitiatingParticipantRef()
- * @generated
- */
- void setInitiatingParticipantRef(Participant value);
-
-} // GlobalChoreographyTask

Back to the top