⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calendartag.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
package org.gridsphere.provider.portletui.tags;import org.gridsphere.portlet.impl.SportletProperties;import org.gridsphere.provider.portletui.beans.CalendarBean;import javax.servlet.jsp.JspException;import javax.servlet.jsp.JspWriter;import javax.servlet.jsp.PageContext;import javax.portlet.RenderResponse;/** * A <code>TextFieldTag</code> represents a text field element */public class CalendarTag extends BaseComponentTag {    protected CalendarBean calendarBean = null;    protected int size = 0;    protected int maxlength = 0;    /**     * Returns the (html) size of the field     *     * @return size of the field     */    public int getSize() {        return size;    }    /**     * Sets the (html) size of the field     *     * @param size size of the field     */    public void setSize(int size) {        this.size = size;    }    /**     * Returns the (html) max length of the field     *     * @return the max length of the field     */    public int getMaxlength() {        return maxlength;    }    /**     * Sets the (html) max length of the field     *     * @param maxlength the max length of the field     */    public void setMaxlength(int maxlength) {        this.maxlength = maxlength;    }    public int doStartTag() throws JspException {        if (!beanId.equals("")) {            calendarBean = (CalendarBean) getTagBean();            if (calendarBean == null) {                //log.debug("Creating new text field bean");                calendarBean = new CalendarBean();                if (maxlength != 0) calendarBean.setMaxLength(maxlength);                if (size != 0) calendarBean.setSize(size);                this.setBaseComponentBean(calendarBean);            } else {                //log.debug("Using existing text field bean");                if (maxlength != 0) calendarBean.setMaxLength(maxlength);                if (size != 0) calendarBean.setSize(size);                this.updateBaseComponentBean(calendarBean);            }        } else {            calendarBean = new CalendarBean();            if (maxlength != 0) calendarBean.setMaxLength(maxlength);            if (size != 0) calendarBean.setSize(size);            this.setBaseComponentBean(calendarBean);        }        RenderResponse res = (RenderResponse)pageContext.getAttribute(SportletProperties.RENDER_RESPONSE, PageContext.REQUEST_SCOPE);        calendarBean.setRenderResponse(res);        calendarBean.setId("cal_" + pageContext.findAttribute(SportletProperties.COMPONENT_ID));        try {            JspWriter out = pageContext.getOut();            out.print(calendarBean.toStartString());        } catch (Exception e) {            throw new JspException(e.getMessage());        }        return SKIP_BODY;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -