blob: 6fb6e901161c6be0e83133ed9ab3b487cc51eca3 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.bpmn.BPMNProfile;
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 -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.BoundaryEvent#isCancelActivity <em>Cancel Activity</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.BoundaryEvent#getAttachedToRef <em>Attached To Ref</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#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.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getBoundaryEvent_CancelActivity()
* @model dataType="org.eclipse.uml2.types.Boolean" required="true" ordered="false"
* @generated
*/
boolean isCancelActivity();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.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 org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getBoundaryEvent_AttachedToRef()
* @model required="true" transient="true" changeable="false" volatile="true" derived="true" ordered="false"
* @generated
*/
BPMNActivity getAttachedToRef();
/**
* <!-- 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