WebSphere Portal 4.1.2

org.apache.jetspeed.portlet.event
Interface WindowEvent

All Superinterfaces:
Event

public interface WindowEvent
extends Event

A WindowEvent is sent by a portlet window whenever the user or the portal interacts with its controls.

Author:
Stephan Hesmer
See Also:
WindowListener

Field Summary
static int WINDOW_CLOSED
          Event identifier indicating that a portlet window is closed.
static int WINDOW_DETACHED
          Event identifier indicating that a portlet window will be detached.
static int WINDOW_MAXIMIZED
          Event identifier indicating that a portlet window will be maximized.
static int WINDOW_MINIMIZED
          Event identifier indicating that a portlet window will be minimized.
static int WINDOW_RESTORED
          Event identifier indicating that a portlet window will be restored.
 
Method Summary
 int getEventId()
          Returns the identifier of the current window event
 
Methods inherited from interface org.apache.jetspeed.portlet.event.Event
getPortlet, getRequest
 

Field Detail

WINDOW_DETACHED

public static final int WINDOW_DETACHED
Event identifier indicating that a portlet window will be detached.

An event with this id is fired when the user has requested that the window be detached from the rest of the portlet page.


WINDOW_MAXIMIZED

public static final int WINDOW_MAXIMIZED
Event identifier indicating that a portlet window will be maximized.

An event with this id is fired when the user has requested that the window be maximized.


WINDOW_MINIMIZED

public static final int WINDOW_MINIMIZED
Event identifier indicating that a portlet window will be minimized.

An event with this id is fired when the user has requested that the window be minimized.


WINDOW_RESTORED

public static final int WINDOW_RESTORED
Event identifier indicating that a portlet window will be restored.

An event with this id is fired when the user has requested that the window be restored to its previous size.


WINDOW_CLOSED

public static final int WINDOW_CLOSED
Event identifier indicating that a portlet window is closed.

An event with this id is fired when the user has requested that the window be closed.

Method Detail

getEventId

public int getEventId()
Returns the identifier of the current window event
Returns:
the window event identifier

WebSphere Portal 4.1.2