Demonstrating the WindowListener : Various Event Listener « Swing JFC « Java






Demonstrating the WindowListener

import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;

import javax.swing.JFrame;

public class WindowTest {
  public static void main(String args[]) {
    JFrame frame = new JFrame("Window Listener");
    WindowListener listener = new WindowListener() {
      public void windowActivated(WindowEvent w) {
        System.out.println(w);
      }

      public void windowClosed(WindowEvent w) {
        System.out.println(w);
      }

      public void windowClosing(WindowEvent w) {
        System.out.println(w);
        System.exit(0);
      }

      public void windowDeactivated(WindowEvent w) {
        System.out.println(w);
      }

      public void windowDeiconified(WindowEvent w) {
        System.out.println(w);
      }

      public void windowIconified(WindowEvent w) {
        System.out.println(w);
      }

      public void windowOpened(WindowEvent w) {
        System.out.println(w);
      }
    };
    frame.addWindowListener(listener);
    frame.setSize(300, 300);
    frame.show();
  }
}


           
       








Related examples in the same category

1.Demonstrating the WindowListener with a WindowAdapterDemonstrating the WindowListener with a WindowAdapter
2.Demonstrating the ActionListenerDemonstrating the ActionListener
3.Demonstrating the AdjustmentListenerDemonstrating the AdjustmentListener
4.Demonstrating the AncestorListener
5.Demonstrating the ComponentListenerDemonstrating the ComponentListener
6.Demonstrating the ContainerListenerDemonstrating the ContainerListener
7.Demonstrating the FocusListenerDemonstrating the FocusListener
8.Demonstrating the HyperlinkListenerDemonstrating the HyperlinkListener
9.Demonstrating the InternalFrameListenerDemonstrating the InternalFrameListener
10.Demonstrating the ItemListenerDemonstrating the ItemListener
11.Demonstrating the KeyListenerDemonstrating the KeyListener
12.Demonstrating the MenuListenerDemonstrating the MenuListener
13.Demonstrating the MouseListener and MouseMotionListenerDemonstrating the MouseListener and MouseMotionListener
14.Demonstrating the MouseWheelListenerDemonstrating the MouseWheelListener
15.Demonstrating the PopupMenuListenerDemonstrating the PopupMenuListener
16.Responding to KeystrokesResponding to Keystrokes