blob: 158ddc81b8819461868a50374e6680cfad78f56e [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Global User Task</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mdt.bpmn.GlobalUserTask#getRendering <em>Rendering</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.GlobalUserTask#getImplementation <em>Implementation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalUserTask()
* @model extendedMetaData="name='tGlobalUserTask' kind='elementOnly'"
* @generated
*/
public interface GlobalUserTask extends GlobalTask {
/**
* Returns the value of the '<em><b>Rendering</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdt.bpmn.Rendering}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rendering</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>Rendering</em>' containment reference list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalUserTask_Rendering()
* @model containment="true"
* extendedMetaData="kind='element' name='rendering' namespace='##targetNamespace'"
* @generated
*/
EList<Rendering> getRendering();
/**
* Returns the value of the '<em><b>Implementation</b></em>' attribute.
* The default value is <code>"unspecified"</code>.
* The literals are from the enumeration {@link org.eclipse.mdt.bpmn.UserTaskImplementation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Implementation</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Implementation</em>' attribute.
* @see org.eclipse.mdt.bpmn.UserTaskImplementation
* @see #isSetImplementation()
* @see #unsetImplementation()
* @see #setImplementation(UserTaskImplementation)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getGlobalUserTask_Implementation()
* @model default="unspecified" unsettable="true"
* extendedMetaData="kind='attribute' name='implementation'"
* @generated
*/
UserTaskImplementation getImplementation();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.GlobalUserTask#getImplementation <em>Implementation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Implementation</em>' attribute.
* @see org.eclipse.mdt.bpmn.UserTaskImplementation
* @see #isSetImplementation()
* @see #unsetImplementation()
* @see #getImplementation()
* @generated
*/
void setImplementation(UserTaskImplementation value);
/**
* Unsets the value of the '{@link org.eclipse.mdt.bpmn.GlobalUserTask#getImplementation <em>Implementation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetImplementation()
* @see #getImplementation()
* @see #setImplementation(UserTaskImplementation)
* @generated
*/
void unsetImplementation();
/**
* Returns whether the value of the '{@link org.eclipse.mdt.bpmn.GlobalUserTask#getImplementation <em>Implementation</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Implementation</em>' attribute is set.
* @see #unsetImplementation()
* @see #getImplementation()
* @see #setImplementation(UserTaskImplementation)
* @generated
*/
boolean isSetImplementation();
} // GlobalUserTask