| |
|
| java.lang.Object javax.portlet.WindowState
WindowState | public class WindowState (Code) | | The WindowState class represents
the possible window states that a portlet window can assume.
This class defines a standard set of the most basic portlet window states.
Additional window states may be defined by calling the constructor of
this class. If a portal/portlet-container does not support a
custom window state defined in the portlet application deployment descriptor,
the custom window state will be ignored by the portal/portlet container.
|
Field Summary | |
final public static WindowState | MAXIMIZED The MAXIMIZED window 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. | final public static WindowState | MINIMIZED When a portlet is in MINIMIZED window state,
the portlet should only render minimal output or no output at all. | final public static WindowState | NORMAL The NORMAL window state indicates that a portlet
may be sharing the page with other portlets. |
Constructor Summary | |
public | WindowState(String name) Creates a new window state with the given name. |
Method Summary | |
public boolean | equals(Object object) Compares the specified object with this window state
for equality. | public int | hashCode() Returns the hash code value for this window state. | public String | toString() Returns a String representation of this window state. |
MAXIMIZED | final public static WindowState MAXIMIZED(Code) | | The MAXIMIZED window 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. A portlet may generate richer content
when its window state is MAXIMIZED .
The string value for this state is "maximized" .
|
MINIMIZED | final public static WindowState MINIMIZED(Code) | | When a portlet is in MINIMIZED window state,
the portlet should only render minimal output or no output at all.
The string value for this state is "minimized" .
|
NORMAL | final public static WindowState NORMAL(Code) | | The NORMAL window state indicates that a portlet
may be sharing the page with other portlets. It may also
indicate that the target device has limited display capabilities.
Therefore, a portlet should restrict the size of its rendered
output in this window state.
The string value for this state is "normal" .
|
WindowState | public WindowState(String name)(Code) | | Creates a new window state with the given name.
Upper case letters in the name are converted to
lower case letters.
Parameters: name - The name of the portlet mode |
equals | public boolean equals(Object object)(Code) | | Compares the specified object with this window state
for equality. Returns true if the
Strings equals method for the String
representing the two window states returns true .
Parameters: object - window state to compare this window state with. true, if the specified object is equal with this window state. |
hashCode | public int hashCode()(Code) | | Returns the hash code value for this window state.
The hash code is constructed by producing the
hash value of the String value of this window state.
hash code value for this window state |
toString | public String toString()(Code) | | Returns a String representation of this window state.
Window state names are always lower case names.
String representation of this window state. |
|
|
|