1 7 8 package java.awt.event; 9 10 import java.util.EventListener ; 11 12 34 public interface WindowListener extends EventListener { 35 38 public void windowOpened(WindowEvent e); 39 40 44 public void windowClosing(WindowEvent e); 45 46 50 public void windowClosed(WindowEvent e); 51 52 59 public void windowIconified(WindowEvent e); 60 61 65 public void windowDeiconified(WindowEvent e); 66 67 75 public void windowActivated(WindowEvent e); 76 77 85 public void windowDeactivated(WindowEvent e); 86 } 87 | Popular Tags |