📄 windowstate.java
字号:
/** * Copyright 2003 IBM Corporation and Sun Microsystems, Inc. * All rights reserved. * Use is subject to license terms. */package javax.portlet;/** * The <CODE>WindowState</CODE> class represents * the possible window states that a portlet window can assume. * <P> * 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. */public class WindowState { /** * The <code>NORMAL</code> 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. * <p/> * The string value for this state is <code>"normal"</code>. */ public final static WindowState NORMAL = new WindowState("normal"); /** * The <code>MAXIMIZED</code> 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 <code>MAXIMIZED</code>. * <p/> * The string value for this state is <code>"maximized"</code>. */ public final static WindowState MAXIMIZED = new WindowState("maximized"); /** * When a portlet is in <code>MINIMIZED</code> window state, * the portlet should only render minimal output or no output at all. * <p/> * The string value for this state is <code>"minimized"</code>. */ public final static WindowState MINIMIZED = new WindowState("minimized"); private String _name; /** * Creates a new window state with the given name. * <p/> * Upper case letters in the name are converted to * lower case letters. * * @param name The name of the portlet mode */ public WindowState(String name) { if (name == null) { throw new IllegalArgumentException("WindowState name can not be NULL"); } _name = name.toLowerCase(); } /** * Returns a String representation of this window state. * Window state names are always lower case names. * * @return String representation of this window state. */ public String toString() { return _name; } /** * 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. * * @return hash code value for this window state */ public int hashCode() { return _name.hashCode(); } /** * Compares the specified object with this window state * for equality. Returns <code>true</code> if the * Strings <code>equals</code> method for the String * representing the two window states returns <code>true</code>. * * @param object window state to compare this window state with. * @return true, if the specified object is equal with this window state. */ public boolean equals(Object object) { if (object instanceof WindowState) return _name.equals(((WindowState) object)._name); else return false; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -