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