java.awt.event
public interface WindowListener extends EventListener
Since: 1.1
See Also: WindowAdapter WindowEvent
UNKNOWN: updated to 1.4
| Method Summary | |
|---|---|
| void | windowActivated(WindowEvent event)
This method is called when a window is activated. |
| void | windowClosed(WindowEvent event)
This method is called when the window is closed.
|
| void | windowClosing(WindowEvent event)
This method is called when the user calls the system menu close
function, giving the program a chance to cancel the close.
|
| void | windowDeactivated(WindowEvent event)
This method is called when the window is deactivated.
|
| void | windowDeiconified(WindowEvent event)
This method is called when the window is deiconified.
|
| void | windowIconified(WindowEvent event)
This method is called when the window is iconified.
|
| void | windowOpened(WindowEvent event)
This method is called when the window is made visible.
|
Parameters: event the WindowEvent indicating the activation
Parameters: event the WindowEvent indicating the dispose
Parameters: event the WindowEvent indicating the close attempt
Parameters: event the WindowEvent indicating the deactivation
Parameters: event the WindowEvent indicating the deiconification
Parameters: event the WindowEvent indicating the iconification
See Also: setIconImage
Parameters: event the WindowEvent indicating the change