public GraphEdge(String id, GraphNode source, GraphNode target, boolean directed) {
   super(id, source, target, directed);
   source.addLeaveNode(target);
   target.addEnterNode(source);
 }