diff src/share/tools/IdealGraphVisualizer/ControlFlowEditor/src/at/ssw/visualizer/cfg/editor/CfgEditorTopComponent.java @ 4494:e55e2fca50fa

Removed SelectionCoordinator; now CFG and Graph view working in parallel.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 02 Feb 2012 17:51:39 +0100
parents aae5b3773e63
children
line wrap: on
line diff
--- a/src/share/tools/IdealGraphVisualizer/ControlFlowEditor/src/at/ssw/visualizer/cfg/editor/CfgEditorTopComponent.java	Wed Feb 01 18:29:28 2012 +0100
+++ b/src/share/tools/IdealGraphVisualizer/ControlFlowEditor/src/at/ssw/visualizer/cfg/editor/CfgEditorTopComponent.java	Thu Feb 02 17:51:39 2012 +0100
@@ -60,7 +60,7 @@
         this.jScrollPane.setOpaque(true);
         this.jScrollPane.setBorder(BorderFactory.createEmptyBorder());
         this.jScrollPane.setViewportBorder(BorderFactory.createEmptyBorder());
-        this.scene = new CfgScene(this);
+        this.scene = new CfgScene(jScrollPane, cfg);
         this.myView = scene.createView();
         this.jScrollPane.setViewportView(myView);
         this.setLayout(new BorderLayout());