1 15 16 package swingwt.awt.event; 17 18 public class WindowAdapter implements WindowListener { 19 20 public void windowActivated(WindowEvent e) { 21 } 22 23 public void windowClosed(WindowEvent e) { 24 } 25 26 public void windowClosing(WindowEvent e) { 27 } 28 29 public void windowDeactivated(WindowEvent e) { 30 } 31 32 public void windowDeiconified(WindowEvent e) { 33 } 34 35 public void windowIconified(WindowEvent e) { 36 } 37 38 public void windowOpened(WindowEvent e) { 39 } 40 41 } 42 | Popular Tags |