// calculate if the event was fired on this element or if it was a
// propagated event
boolean isPropagated = false;// (this.getId().equals(executionContext.getEventSource().getId()));
// execute static actions
BaseElementEvent event = getEvent(eventType);
if (event != null) {
// update the context
executionContext.setBaseElementEvent(event);
// execute the static actions specified in the process definition
executeConnectors(event.getConnectors(), executionContext, isPropagated);
}
// execute the runtime actions
// List<ActionHandler> runtimeActions =
// getRuntimeActionsForEvent(executionContext, eventType);