📄 messageboxbean.java
字号:
package org.gridsphere.provider.portletui.beans;import java.util.ArrayList;import java.util.List;/* * @author <a href="mailto:oliver.wehrens@aei.mpg.de">Oliver Wehrens</a> * @version $Id: MessageBoxBean.java 4884 2006-06-26 23:52:48Z novotny $ */public class MessageBoxBean extends BaseComponentBean implements TagBean { public static final String NAME = "mb"; private List text = new ArrayList(); private List keys = new ArrayList(); private String messageType = MessageStyle.MSG_INFO; private String width = null; private String height = null; public MessageBoxBean() { super(NAME); } public MessageBoxBean(String beanId) { super(NAME); this.beanId = beanId; } /** * Returns the width of the messagebox * * @return width of the messagebox */ public String getWidth() { return width; } /** * Sets the value of the message to be displayed. All other messages or deleted. * * @param text text to be displayed */ public void setValue(String text) { this.text = new ArrayList(); this.keys = new ArrayList(); this.text.add(text); } /** * Returns the text of the messagebox. * * @return text of the messagebox */ public String getValue() { return getMessage(false); } /** * Sets the width of the messgebox * * @param width witdh of the messagebox */ public void setWidth(String width) { this.width = width; } /** * Gets the height of the messagebox * * @return height of the messagebox */ public String getHeight() { return height; } /** * Sets the height of the messageboox * * @param height height of the messagebox */ public void setHeight(String height) { this.height = height; } /** * Returns the type of the message. * * @return type of the message * @see TextBean */ public String getMessageType() { return messageType; } /** * Sets the type of the message * * @param messageType * @see TextBean */ public void setMessageType(String messageType) { this.messageType = messageType; } /** * Appends text to the messagebox. * * @param text text to append */ public void appendText(String text) { this.text.add(text); } /** * Prepends text to the current text. * * @param text text to prepend */ public void prependText(String text) { this.text.add(0, text); } /** * Appends a localisation key to the current list of keys. * * @param key key to append */ public void appendKey(String key) { this.keys.add(key); } /** * Prepends a localisation key to the current list of keys. * * @param key key to prepend */ public void prependKey(String key) { this.keys.add(0, key); } /** * Removes a key from the list. * * @param key key to remove */ public void removeKey(String key) { this.keys.remove(key); } /** * Removes the text from the list. * * @param text text to be removed */ public void removeText(String text) { this.text.remove(text); } /** * Clears the message. This includes the text and the keys for localization. */ public void clearMessage() { this.text = new ArrayList(); this.keys = new ArrayList(); } /** * Returns the message text. If localized keys were specified the translated (and only those) are returned. * * @param format format as html output * @return text of the messagebox */ private String getMessage(boolean format) { String result = null; List list = text; if (keys.size() != 0) { list = keys; } if (list.size() != 0) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < list.size(); i++) { String message = (String) list.get(i); if (keys.size() != 0) { message = getLocalizedText(message); } if (format) { sb.append("<span class=\""); sb.append(messageType); sb.append("\">"); sb.append(message); sb.append("</span>"); } else { sb.append(message); } } result = sb.toString(); } return result; } public String toStartString() { return ""; } public String toEndString() { this.cssClass = "ui-messagebox-" + messageType; StringBuffer sb = new StringBuffer(); String message = getMessage(true); if (height != null) this.addCssStyle("height=\"" + height + "\""); if (width != null) this.addCssStyle("width=\"" + width + "\""); // only return something if we have a message if (message != null) { sb.append("<div"); sb.append(getFormattedCss()); sb.append(">"); sb.append(message); sb.append("</div>"); } return sb.toString(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -