Interface IUIWindowListener
public interface IUIWindowListener extends IUIBaseEventListener
{
// 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 listener interface receives window events. Window events are provided for notification purposes only.
EventListener
|
+--IUIBaseEventListener
|
+--IUIWindowListener
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.
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.
|