📄 frametag.java
字号:
/** * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: FrameTag.java 4762 2006-04-14 17:07:31Z novotny $ */package org.gridsphere.provider.portletui.tags;import org.gridsphere.provider.portletui.beans.FrameBean;import org.gridsphere.provider.portletui.beans.TableBean;import javax.servlet.jsp.JspException;import javax.servlet.jsp.JspWriter;import java.util.Locale;import java.util.ResourceBundle;/** * A <code>FrameTag</code> is a stylized <code>TableTag</code> that can also be used to set text messages */public class FrameTag extends TableTag { protected String style = null; protected String key = null; protected String value = null; public FrameTag() { cssClass = FrameBean.FRAME_TABLE; } /** * Sets the key used to locate localized text * * @param key the key */ public void setKey(String key) { this.key = key; } /** * Returns the key used to locate localized text * * @return the key */ public String getKey() { return key; } /** * Sets the style of the text: Available styles are * <ul> * <li>error</li> * <li>info</li> * <li>status</li> * <li>alert</li> * <li>success</li> * * @param style the text style */ public void setStyle(String style) { this.style = style; } /** * Returns the style of the text: Available styles are * <ul> * <li>error</li> * <li>info</li> * <li>status</li> * <li>alert</li> * <li>success</li> * * @return the text style */ public String getStyle() { return style; } public int doStartTag() throws JspException { if (style != null) { if (style.equalsIgnoreCase("error") || (style.equalsIgnoreCase("err"))) { this.cssClass = FrameBean.FRAME_ERROR_MESSAGE; //this.cssClass = TextBean.MSG_ERROR; } else if (style.equalsIgnoreCase("status")) { this.cssClass = FrameBean.FRAME_ERROR_MESSAGE; //this.cssClass = TextBean.MSG_STATUS; } else if (style.equalsIgnoreCase("info")) { this.cssClass = FrameBean.FRAME_INFO_MESSAGE; //this.cssClass = TextBean.MSG_INFO; } else if (style.equalsIgnoreCase("alert")) { this.cssClass = FrameBean.FRAME_ALERT_MESSAGE; //this.cssClass = TextBean.MSG_ALERT; } else if (style.equalsIgnoreCase("success")) { this.cssClass = FrameBean.FRAME_INFO_MESSAGE; //this.cssClass = TextBean.MSG_SUCCESS; } } // get any parameter values if data is divided if (maxRows > 0) { String curPage = pageContext.getRequest().getParameter(TableBean.CURRENT_PAGE); if (curPage != null) { currentPage = Integer.valueOf(curPage).intValue(); } } if (!beanId.equals("")) { tableBean = (FrameBean) getTagBean(); if (tableBean == null) { tableBean = new FrameBean(beanId); this.setBaseComponentBean(tableBean); return SKIP_BODY; } else { String key = tableBean.getKey(); if (key != null) { tableBean.setValue(getLocalizedText(key)); } tableBean.setCssClass(cssClass); tableBean.setCssStyle(cssStyle); } } else { tableBean = new FrameBean(); tableBean.setWidth(width); if (cellSpacing != null) tableBean.setCellSpacing(cellSpacing); if (cellPadding != null) tableBean.setCellPadding(cellPadding); if (border != null) tableBean.setBorder(border); if (align!=null) tableBean.setAlign(align); if (align!=null) tableBean.setValign(valign); tableBean.setCssClass(cssClass); tableBean.setCssStyle(cssStyle); if (sortable) { tableBean.setSortable(sortable); tableBean.setSortableID("td" + this.getUniqueId("gs_tableNum")); } this.setBaseComponentBean(tableBean); if (key != null) { tableBean.setKey(key); Locale locale = pageContext.getRequest().getLocale(); ResourceBundle bundle = ResourceBundle.getBundle("Portlet", locale); tableBean.setValue(bundle.getString(tableBean.getKey())); } tableBean.setMaxRows(maxRows); } tableBean.setCurrentPage(currentPage); tableBean.setRowCount(rowCount); tableBean.setZebra(isZebra); PanelTag panelTag = (PanelTag) findAncestorWithClass(this, PanelTag.class); if (panelTag != null) { int numCols = panelTag.getNumCols(); int thiscol = panelTag.getColumnCounter(); try { JspWriter out = pageContext.getOut(); if ((thiscol % numCols) == 0) { out.println("<tr valign=\"top\">"); } // Attribute 'width' replaced by 'style="width:"' for XHTML 1.0 Strict compliance out.println("<td style=\"width:" + "100%" + "\">"); } catch (Exception e) { throw new JspException(e.getMessage()); } } try { JspWriter out = pageContext.getOut(); out.print(tableBean.toStartString()); } catch (Exception e) { throw new JspException(e.getMessage()); } return EVAL_BODY_INCLUDE; } public int doEndTag() throws JspException { tableBean.setRowCount(rowCount); if (!beanId.equals("")) { tableBean = (FrameBean) getTagBean(); if (tableBean == null) { return EVAL_PAGE; } } rowCount = 0; try { JspWriter out = pageContext.getOut(); out.print(tableBean.toEndString()); } catch (Exception e) { throw new JspException(e.getMessage()); } PanelTag panelTag = (PanelTag) findAncestorWithClass(this, PanelTag.class); if (panelTag != null) { int numCols = panelTag.getNumCols(); int thiscol = panelTag.getColumnCounter(); thiscol++; panelTag.setColumnCounter(thiscol); try { JspWriter out = pageContext.getOut(); out.println("</td>"); if ((thiscol % numCols) == 0) { out.println("</tr>"); } } catch (Exception e) { throw new JspException(e.getMessage()); } } return EVAL_PAGE; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -