blob: c1f9b21eb2b28398fd8c1a650de13b2b60f25c63 [file] [log] [blame]
/**
* Copyright (c) 2014 Fraunhofer FOKUS
* 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:
* Max Bureck
*/
package org.eclipse.upr.bpmnprof;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Boundary Event</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <p>From package BPMNProfile::CoreStructure::Common::Events.</p>
* <p>From package BPMNProfile::CoreStructure::Common::Artifacts.</p>
* <p>From package BPMNProfile::CoreStructure::Common.</p>
* <p>From package BPMNProfile::Process::Data.</p>
* <p>From package BPMNProfile::Process::HumanInteraction.</p>
* <p>From package BPMNProfile::Collaboration.</p>
* <p>From package BPMNProfile::CoreStructure::Foundation.</p>
* <p>From package BPMNProfile::CoreStructure::Service.</p>
* <p>From package BPMNProfile::Collaboration::Conversation.</p>
* <p>From package BPMNProfile::CoreStructure.</p>
* <p>From package BPMNProfile::Process::Activities.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.bpmnprof.BoundaryEvent#isCancelActivity <em>Cancel Activity</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.BoundaryEvent#getAttachedToRef <em>Attached To Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getBoundaryEvent()
* @model
* @generated
*/
public interface BoundaryEvent extends CatchEvent {
/**
* Returns the value of the '<em><b>Cancel Activity</b></em>' attribute.
* <!-- 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.upr.bpmnprof.BpmnprofPackage#getBoundaryEvent_CancelActivity()
* @model dataType="org.eclipse.uml2.types.Boolean" required="true" ordered="false"
* @generated
*/
boolean isCancelActivity();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.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);
/**
* Returns the value of the '<em><b>Attached To Ref</b></em>' reference.
* <!-- 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(BPMNActivity)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getBoundaryEvent_AttachedToRef()
* @model required="true" transient="true" volatile="true" derived="true" ordered="false"
* @generated
*/
BPMNActivity getAttachedToRef();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.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(BPMNActivity value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* boundaryEvent::/attachedToRef : BPMNActivity = action in the same interruptible region as the event.
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
* <!-- end-model-doc -->
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='boundaryEvent.attachedToRef'"
* @generated
*/
boolean boundaryEventattachedToRef(DiagnosticChain diagnostics, Map<Object, Object> context);
} // BoundaryEvent