String sequenceFlowSVG = sequenceFlowToSVG(bpmnEdge);
svg.addEdge(sequenceFlowSVG);
}
if (bpmnElement instanceof Association) {
String associationSVG = associationToSVG(bpmnEdge);
svg.addEdge(associationSVG);
}
if (bpmnElement instanceof MessageFlow) {
String messageFlowSVG = messageFlowToSVG(bpmnEdge);
svg.addChildren(messageFlowSVG);