public BasisPathController(GUIController control)
{
this.control = control;
g = new ListenableDirectedGraph(DefaultEdge.class);
GraphModel graphModel = new JGraphModelAdapter(g);
graph = new JGraph(graphModel);
//Add selection Listener to graph
graph.addGraphSelectionListener(new GraphSelectionListenerImp(control));