blob: 7c4ccf1098cb0251956531a131761467deed4832 [file] [log] [blame]
/**
* <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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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>Boundary Event</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpmn2.BoundaryEvent#getAttachedToRef <em>Attached To Ref</em>}</li>
* <li>{@link org.eclipse.bpmn2.BoundaryEvent#isCancelActivity <em>Cancel Activity</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpmn2.Bpmn2Package#getBoundaryEvent()
* @model extendedMetaData="name='tBoundaryEvent' kind='elementOnly'"
* @generated
*/
public interface BoundaryEvent extends CatchEvent {
/**
* Returns the value of the '<em><b>Attached To Ref</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.Activity#getBoundaryEventRefs <em>Boundary Event Refs</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attached To 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>Attached To Ref</em>' reference.
* @see #setAttachedToRef(Activity)
* @see org.eclipse.bpmn2.Bpmn2Package#getBoundaryEvent_AttachedToRef()
* @see org.eclipse.bpmn2.Activity#getBoundaryEventRefs
* @model opposite="boundaryEventRefs" resolveProxies="false" required="true" ordered="false"
* extendedMetaData="kind='attribute' name='attachedToRef'"
* @generated
*/
Activity getAttachedToRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.BoundaryEvent#getAttachedToRef <em>Attached To Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attached To Ref</em>' reference.
* @see #getAttachedToRef()
* @generated
*/
void setAttachedToRef(Activity value);
/**
* Returns the value of the '<em><b>Cancel Activity</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cancel Activity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Cancel Activity</em>' attribute.
* @see #setCancelActivity(boolean)
* @see org.eclipse.bpmn2.Bpmn2Package#getBoundaryEvent_CancelActivity()
* @model default="true" ordered="false"
* extendedMetaData="kind='attribute' name='cancelActivity'"
* @generated
*/
boolean isCancelActivity();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.BoundaryEvent#isCancelActivity <em>Cancel Activity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Cancel Activity</em>' attribute.
* @see #isCancelActivity()
* @generated
*/
void setCancelActivity(boolean value);
} // BoundaryEvent