1 /* Copyright (C) 1999 Free Software Foundation
3 This file is part of libjava.
5 This software is copyrighted work licensed under the terms of the
6 Libjava License. Please consult the file "LIBJAVA_LICENSE" for
9 package java
.awt
.event
;
12 * @author Per Bothner <bothner@cygnus.com>
13 * @date Fenruary, 1999.
16 /* Status: Believed complete and correct. */
18 public class WindowAdapter
implements WindowListener
20 public void windowActivated (WindowEvent w
) { }
21 public void windowClosed (WindowEvent w
) { }
22 public void windowClosing (WindowEvent w
) { }
23 public void windowDeactivated (WindowEvent w
) { }
24 public void windowDeiconified (WindowEvent w
) { }
25 public void windowIconified (WindowEvent w
) { }
26 public void windowOpened (WindowEvent w
) { }