465466467468469470471472473474
super(); LOG.info("Starting up graph visualizer..."); this.graphService = graphService; this.graph = graphService.getGraph(); this.pathservice = new ParetoPathService(graphService, sptServiceFactory); setTitle("GraphVisualizer"); init(); }
780781782783784785786787788
protected void setLongDistanceMode(boolean selected) { if( selected ){ this.pathservice = new LongDistancePathService(graphService, sptServiceFactory); } else { this.pathservice = new ParetoPathService(graphService, sptServiceFactory); } }