2000-12-04 10:27:21 +08:00
|
|
|
/* Copyright (C) 1999, 2000 Free Software Foundation
|
1999-05-05 19:05:57 +08:00
|
|
|
|
|
|
|
This file is part of libjava.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.awt.event;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Per Bothner <bothner@cygnus.com>
|
2000-12-04 10:27:21 +08:00
|
|
|
* @date February, 1999.
|
1999-05-05 19:05:57 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Status: Believed complete and correct. */
|
|
|
|
|
2000-12-04 10:27:21 +08:00
|
|
|
public abstract class WindowAdapter implements WindowListener
|
1999-05-05 19:05:57 +08:00
|
|
|
{
|
|
|
|
public void windowActivated (WindowEvent w) { }
|
|
|
|
public void windowClosed (WindowEvent w) { }
|
|
|
|
public void windowClosing (WindowEvent w) { }
|
|
|
|
public void windowDeactivated (WindowEvent w) { }
|
|
|
|
public void windowDeiconified (WindowEvent w) { }
|
|
|
|
public void windowIconified (WindowEvent w) { }
|
|
|
|
public void windowOpened (WindowEvent w) { }
|
|
|
|
}
|