(ActionEvent e)
| 88 | startVTKApp.addActionListener(new ActionListener() { |
| 89 | |
| 90 | public void actionPerformed(ActionEvent e) { |
| 91 | final VtkApplication app = new VtkApplication(); |
| 92 | JFrame f = buildFrame("VtkApp", app, 400, 200); |
| 93 | f.addWindowListener(new WindowAdapter() { |
| 94 | public void windowClosing(WindowEvent e) { |
| 95 | app.Delete(); |
| 96 | } |
| 97 | }); |
| 98 | f.setVisible(true); |
| 99 | } |
| 100 | }); |
| 101 | JFrame mainFrame = buildFrame("Launcher", startVTKApp, 200, 200); |
| 102 | mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
nothing calls this directly
no test coverage detected