|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WindowListener
Window events are not supported anymore in 5.1. For compatibility reasons, the interface is not removed, but no window events are sent to portlets.
The WindowListener
interface is an addition to the
Portlet
interface. If an object wishes to receive events from a
portlet window, this interface has to be implemented additionally to the
Portlet
interface.
For convenience the WindowListener provides different methods for each type of window events.
WindowEvent
This interface is designed to be implemented by clients. |
Method Summary | |
---|---|
void |
windowClosed(WindowEvent event)
Deprecated. Notifies this listener that a portlet window has been closed. |
void |
windowClosing(WindowEvent event)
Deprecated. Notifies this listener that a portlet window is about to be closed. |
void |
windowDetached(WindowEvent event)
Deprecated. Notifies this listener that a portlet window has been detached. |
void |
windowMaximized(WindowEvent event)
Deprecated. Notifies this listener that a portlet window has been maximized. |
void |
windowMinimized(WindowEvent event)
Deprecated. Notifies this listener that a portlet window has been minimized. |
void |
windowRestored(WindowEvent event)
Deprecated. Notifies this listener that a portlet window has been restored from being minimized or maximized, respectively. |
Method Detail |
---|
void windowDetached(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
requestvoid windowMaximized(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
requestvoid windowMinimized(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
requestvoid windowClosing(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
requestvoid windowClosed(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
requestvoid windowRestored(WindowEvent event) throws PortletException
event
- the window event
PortletException
- if the listener has trouble fulfilling the
request
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |