1 7 8 package java.awt.event; 9 10 39 public abstract class WindowAdapter 40 implements WindowListener , WindowStateListener , WindowFocusListener 41 { 42 45 public void windowOpened(WindowEvent e) {} 46 47 51 public void windowClosing(WindowEvent e) {} 52 53 56 public void windowClosed(WindowEvent e) {} 57 58 61 public void windowIconified(WindowEvent e) {} 62 63 66 public void windowDeiconified(WindowEvent e) {} 67 68 71 public void windowActivated(WindowEvent e) {} 72 73 76 public void windowDeactivated(WindowEvent e) {} 77 78 82 public void windowStateChanged(WindowEvent e) {} 83 84 91 public void windowGainedFocus(WindowEvent e) {} 92 93 100 public void windowLostFocus(WindowEvent e) {} 101 } 102 | Popular Tags |