blob: 909bd1170dae57cb5db6430de6bec9b62f4270bc [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.bpmn;
import javax.xml.namespace.QName;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Compensate Event Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpmn.CompensateEventDefinition#getActivityRef <em>Activity Ref</em>}</li>
* <li>{@link org.eclipse.bpmn.CompensateEventDefinition#isWaitForCompletion <em>Wait For Completion</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpmn.BpmnPackage#getCompensateEventDefinition()
* @model extendedMetaData="name='tCompensateEventDefinition' kind='elementOnly'"
* @generated
*/
public interface CompensateEventDefinition extends EventDefinition {
/**
* Returns the value of the '<em><b>Activity Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Activity Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Activity Ref</em>' attribute.
* @see #setActivityRef(QName)
* @see org.eclipse.bpmn.BpmnPackage#getCompensateEventDefinition_ActivityRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='activityRef'"
* @generated
*/
QName getActivityRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn.CompensateEventDefinition#getActivityRef <em>Activity Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Activity Ref</em>' attribute.
* @see #getActivityRef()
* @generated
*/
void setActivityRef(QName value);
/**
* Returns the value of the '<em><b>Wait For Completion</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Wait For Completion</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Wait For Completion</em>' attribute.
* @see #isSetWaitForCompletion()
* @see #unsetWaitForCompletion()
* @see #setWaitForCompletion(boolean)
* @see org.eclipse.bpmn.BpmnPackage#getCompensateEventDefinition_WaitForCompletion()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean"
* extendedMetaData="kind='attribute' name='waitForCompletion'"
* @generated
*/
boolean isWaitForCompletion();
/**
* Sets the value of the '{@link org.eclipse.bpmn.CompensateEventDefinition#isWaitForCompletion <em>Wait For Completion</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Wait For Completion</em>' attribute.
* @see #isSetWaitForCompletion()
* @see #unsetWaitForCompletion()
* @see #isWaitForCompletion()
* @generated
*/
void setWaitForCompletion(boolean value);
/**
* Unsets the value of the '{@link org.eclipse.bpmn.CompensateEventDefinition#isWaitForCompletion <em>Wait For Completion</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetWaitForCompletion()
* @see #isWaitForCompletion()
* @see #setWaitForCompletion(boolean)
* @generated
*/
void unsetWaitForCompletion();
/**
* Returns whether the value of the '{@link org.eclipse.bpmn.CompensateEventDefinition#isWaitForCompletion <em>Wait For Completion</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Wait For Completion</em>' attribute is set.
* @see #unsetWaitForCompletion()
* @see #isWaitForCompletion()
* @see #setWaitForCompletion(boolean)
* @generated
*/
boolean isSetWaitForCompletion();
} // CompensateEventDefinition