Class UIWindowAdapter
public abstract class UIWindowAdapter implements
IUIWindowListener
{
// Methods
public void windowActivated(UIWindowEvent e);
public void windowClosed(UIWindowEvent e);
public void windowClosing(UIWindowEvent e);
public void windowDeactivated(UIWindowEvent e);
public void windowDeiconified(UIWindowEvent e);
public void windowIconified(UIWindowEvent e);
public void windowOpened(UIWindowEvent e);
}
This class is the listener adapter for receiving UIComponent events. Component events are provided for notification purposes only.
public void windowActivated(UIWindowEvent e);
Invoked when a window is activated.
Return Value:
No return value.
Parameter | Description |
e
| A window event containing the WINDOW_ACTIVATED identifier.
|
public void windowClosed(UIWindowEvent e);
Invoked when a window has been closed.
Return Value:
No return value.
Parameter | Description |
e
| A window event containing the WINDOW_CLOSED identifier.
|
public void windowClosing(UIWindowEvent e);
Invoked when a window is in the process of being closed. The close operation can be overridden at this point.
Return Value:
No return value.
Parameter | Description |
e
| A window event containing the WINDOW_CLOSING identifier.
|
public void windowDeactivated(UIWindowEvent e);
Invoked when a window is de-activated.
Return Value:
No return value.
public void windowDeiconified(UIWindowEvent e);
Invoked when a window is de-iconified.
Return Value:
No return value.
public void windowIconified(UIWindowEvent e);
Invoked when a window is iconified.
Return Value:
No return value.
Parameter | Description |
e
| A window event containing the WINDOW_ICONIFIED identifier.
|
public void windowOpened(UIWindowEvent e);
Invoked when a window has been opened.
Return Value:
No return value.
Parameter | Description |
e
| A window event containing the WINDOW_OPENED identifier.
|