MCPcopy Create free account
hub / github.com/Kitware/VTK / actionPerformed

Method actionPerformed

Wrapping/Java/vtk/sample/ReleaseVtkPanel.java:90–99  ·  view source on GitHub ↗
(ActionEvent e)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 1

buildFrameMethod · 0.95

Tested by

no test coverage detected