Uses of Class
javax.portlet.WindowState
-
-
Uses of WindowState in javax.portlet
Fields in javax.portlet declared as WindowState Modifier and Type Field Description static WindowStateWindowState. MAXIMIZEDTheMAXIMIZEDwindow state is an indication that a portlet may be the only portlet being rendered in the portal page, or that the portlet has more space compared to other portlets in the portal page.static WindowStateWindowState. MINIMIZEDWhen a portlet is inMINIMIZEDwindow state, the portlet should only render minimal output or no output at all.static WindowStateWindowState. NORMALTheNORMALwindow state indicates that a portlet may be sharing the page with other portlets.Methods in javax.portlet that return WindowState Modifier and Type Method Description WindowStateWindowStateException. getState()Returns the portlet state causing this exception.WindowStatePortletRequest. getWindowState()Returns the current window state of the portlet.Methods in javax.portlet with parameters of type WindowState Modifier and Type Method Description booleanPortletRequest. isWindowStateAllowed(WindowState state)Returns true, if the given window state is valid to be set for this portlet in the context of the current request.voidActionResponse. setWindowState(WindowState windowState)Sets the window state of a portlet to the given window state.voidPortletURL. setWindowState(WindowState windowState)Indicates the window state the portlet should be in, if this portlet URL triggers a request.Constructors in javax.portlet with parameters of type WindowState Constructor Description WindowStateException(String text, Throwable cause, WindowState state)Constructs a new portlet state exception when the portlet needs to do the following: throw an exception include a message about the "root cause" that interfered with its normal operationinclude a description messageWindowStateException(String text, WindowState state)Constructs a new portlet state exception with the given text.WindowStateException(Throwable cause, WindowState state)Constructs a new portlet state exception when the portlet needs to throw an exception.
-