00001 import java.awt.event.*; 00002 //import java.awt.*; 00003 public class WCloser implements WindowListener 00004 { 00005 public void windowOpened(WindowEvent e){} 00006 public void windowClosing(WindowEvent e){System.exit(0);} 00007 public void windowClosed(WindowEvent e){} 00008 public void windowIconified(WindowEvent e){} 00009 public void windowDeiconified(WindowEvent e){} 00010 public void windowActivated(WindowEvent e){} 00011 public void windowDeactivated(WindowEvent e){} 00012 00013 }
1.5.1