Element node = (Element) it.next();
String start = node.attribute("startid").getValue();
String end = node.attribute("endid").getValue();
String name = node.attribute("display_name").getValue();
graph.addConnection(Integer.parseInt(start), Integer.parseInt(end), name);
}
} catch (DocumentException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {