Exemplo n.º 1
0
 public void windowClosing(WindowEvent e) {
   if (e.getSource() == this) {
     close();
     if (Recorder.record) Recorder.record("run", "Close");
   }
 }
Exemplo n.º 2
0
 public void windowClosing(WindowEvent evt) {
   JFrame frame = (JFrame) evt.getSource();
   frame.setVisible(false);
   frame.dispose();
 }
Exemplo n.º 3
0
 public void windowClosing(WindowEvent e) {
   if (e.getSource() == this) dispose();
 }