menuItem.putClientProperty(MenuHandler.MENU_ID, MenuHandler.MENU_QUIT);
menu.add(menuItem);
DependencyGraph dgraph = new DependencyGraph(this.args.catalog_db);
try {
new DependencyGraphGenerator(new DesignerInfo(args.catalogContext, args.workload, args.stats)).generate(dgraph);
this.graph_panel = GraphVisualizationPanel.factory(dgraph);
} catch (Exception ex) {
ex.printStackTrace();
System.exit(1);
}