blob: aa59d25461cba3a11f95b5981270e40cd21c6f2b [file] [log] [blame]
/**
* Copyright (c) 2000-2009, Intalio Inc.
* 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:
* Intalio Inc. - initial API and implementation
*
*/
package org.eclipse.mdt.bpmn;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.util.FeatureMap;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Global Task</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mdt.bpmn.GlobalTask#getPerformerGroup <em>Performer Group</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.GlobalTask#getPerformer <em>Performer</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalTask()
* @model extendedMetaData="name='tGlobalTask' kind='elementOnly'"
* @generated
*/
public interface GlobalTask extends CallableElement {
/**
* Returns the value of the '<em><b>Performer Group</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Performer Group</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Performer Group</em>' attribute list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalTask_PerformerGroup()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='group' name='performer:group' namespace='##targetNamespace'"
* @generated
*/
FeatureMap getPerformerGroup();
/**
* Returns the value of the '<em><b>Performer</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdt.bpmn.Performer}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Performer</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>Performer</em>' containment reference list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalTask_Performer()
* @model containment="true" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='performer' namespace='##targetNamespace' group='performer:group'"
* @generated
*/
EList<Performer> getPerformer();
} // GlobalTask