/**
  * Returns the name of the start event.
  *
  * @param modelInstance the BPMN model instance
  * @return the name attribute value of the start event
  */
 protected String getStartEventName(BpmnModelInstance modelInstance) {
   StartEvent startEvent = getStartEvent(modelInstance);
   return stripLineBreaks(startEvent.getName());
 }