亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? elerrorstag.java

?? struts的源代碼
?? JAVA
字號:
/*
 * $Id: ELErrorsTag.java 123585 2004-12-29 00:43:33Z martinc $ 
 *
 * Copyright 1999-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.strutsel.taglib.html;

import org.apache.struts.taglib.html.ErrorsTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Custom tag that renders error messages if an appropriate request attribute
 * has been created.  The tag looks for a request attribute with a reserved
 * key, and assumes that it is either a String, a String array, containing
 * message keys to be looked up in the module's MessageResources, or
 * an object of type <code>org.apache.struts.action.ActionErrors</code>.
 * <p>
 * The following optional message keys will be utilized if corresponding
 * messages exist for them in the application resources:
 * <ul>
 * <li><b>errors.header</b> - If present, the corresponding message will be
 *     rendered prior to the individual list of error messages.</li>
 * <li><b>errors.footer</b> - If present, the corresponding message will be
 *     rendered following the individual list of error messages.</li>
 * <li><b>errors.prefix</b> - If present, the corresponding message will be
 *     rendered before each individual error message.</li>
 * <li><b>errors.suffix</b> - If present, the corresponding message will be
 *     rendered after each individual error message.</li>
 * </ul>
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.html.ErrorsTag</code> which provides most of
 * the described functionality.  This subclass allows all attribute values to
 * be specified as expressions utilizing the JavaServer Pages Standard Library
 * expression language.
 *
 * @version $Rev: 123585 $
 */
public class ELErrorsTag extends ErrorsTag {

    /**
     * Instance variable mapped to "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String bundleExpr;
    /**
     * Instance variable mapped to "footer" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String footerExpr;
    /**
     * Instance variable mapped to "header" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String headerExpr;
    /**
     * Instance variable mapped to "locale" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String localeExpr;
    /**
     * Instance variable mapped to "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String nameExpr;
    /**
     * Instance variable mapped to "prefix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String prefixExpr;
    /**
     * Instance variable mapped to "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String propertyExpr;
    /**
     * Instance variable mapped to "suffix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String suffixExpr;

    /**
     * Getter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getBundleExpr() { return (bundleExpr); }
    /**
     * Getter method for "footer" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getFooterExpr() { return (footerExpr); }
    /**
     * Getter method for "header" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getHeaderExpr() { return (headerExpr); }
    /**
     * Getter method for "locale" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getLocaleExpr() { return (localeExpr); }
    /**
     * Getter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNameExpr() { return (nameExpr); }
    /**
     * Getter method for "prefix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPrefixExpr() { return (prefixExpr); }
    /**
     * Getter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPropertyExpr() { return (propertyExpr); }
    /**
     * Getter method for "suffix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getSuffixExpr() { return (suffixExpr); }

    /**
     * Setter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setBundleExpr(String bundleExpr) { this.bundleExpr = bundleExpr; }
    /**
     * Setter method for "footer" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setFooterExpr(String footerExpr) { this.footerExpr = footerExpr; }
    /**
     * Setter method for "header" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setHeaderExpr(String headerExpr) { this.headerExpr = headerExpr; }
    /**
     * Setter method for "locale" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setLocaleExpr(String localeExpr) { this.localeExpr = localeExpr; }
    /**
     * Setter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setNameExpr(String nameExpr) { this.nameExpr = nameExpr; }
    /**
     * Setter method for "prefix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setPrefixExpr(String prefixExpr) { this.prefixExpr = prefixExpr; }
    /**
     * Setter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setPropertyExpr(String propertyExpr) { this.propertyExpr = propertyExpr; }
    /**
     * Setter method for "suffix" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setSuffixExpr(String suffixExpr) { this.suffixExpr = suffixExpr; }

    /**
     * Resets attribute values for tag reuse.
     */
    public void release()
    {
        super.release();
        setBundleExpr(null);
        setFooterExpr(null);
        setHeaderExpr(null);
        setLocaleExpr(null);
        setNameExpr(null);
        setPrefixExpr(null);
        setPropertyExpr(null);
        setSuffixExpr(null);
    }
    
    /**
     * Process the start tag.
     *
     * @exception JspException if a JSP exception has occurred
     */
    public int doStartTag() throws JspException {
        evaluateExpressions();
        return(super.doStartTag());
    }

    /**
     * Processes all attribute values which use the JSTL expression evaluation
     * engine to determine their values.
     *
     * @exception JspException if a JSP exception has occurred
     */
    private void evaluateExpressions() throws JspException {
        String  string  = null;

        if ((string = EvalHelper.evalString("bundle", getBundleExpr(),
                                            this, pageContext)) != null)
            setBundle(string);

        if ((string = EvalHelper.evalString("footer", getFooterExpr(),
                                            this, pageContext)) != null)
            setFooter(string);

        if ((string = EvalHelper.evalString("header", getHeaderExpr(),
                                            this, pageContext)) != null)
            setHeader(string);

        if ((string = EvalHelper.evalString("locale", getLocaleExpr(),
                                            this, pageContext)) != null)
            setLocale(string);

        if ((string = EvalHelper.evalString("name", getNameExpr(),
                                            this, pageContext)) != null)
            setName(string);

        if ((string = EvalHelper.evalString("prefix", getPrefixExpr(),
                                            this, pageContext)) != null)
            setPrefix(string);

        if ((string = EvalHelper.evalString("property", getPropertyExpr(),
                                            this, pageContext)) != null)
            setProperty(string);

        if ((string = EvalHelper.evalString("suffix", getSuffixExpr(),
                                            this, pageContext)) != null)
            setSuffix(string);
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区三区视频在线观看| 欧美一a一片一级一片| 日韩 欧美一区二区三区| 一区二区三区视频在线观看| 国产精品国产馆在线真实露脸| 久久精品一区八戒影视| 久久久亚洲高清| 国产人成亚洲第一网站在线播放| 久久丝袜美腿综合| 国产亚洲成aⅴ人片在线观看 | 精品精品欲导航| 欧美成人精品3d动漫h| 欧美tickling挠脚心丨vk| 91精品国产91久久久久久一区二区 | 婷婷一区二区三区| 免费成人在线网站| 国产精品123区| 色综合天天综合在线视频| 欧美在线啊v一区| 欧美一区二区三区成人| 精品久久久久久久久久久院品网| 国产日韩欧美精品电影三级在线| 国产精品拍天天在线| 亚洲午夜免费视频| 欧美96一区二区免费视频| 国产精品资源在线看| 色呦呦一区二区三区| 91麻豆精品国产自产在线观看一区| 91精品国产免费| 国产欧美一区二区精品性色超碰| 综合自拍亚洲综合图不卡区| 亚洲图片一区二区| 国产一区二区三区国产| 91免费看片在线观看| 欧美一区二区三区四区高清 | 91视频com| 欧美肥胖老妇做爰| 国产精品网友自拍| 日韩国产在线观看| 91看片淫黄大片一级| 日韩三级免费观看| 亚洲综合在线第一页| 国产精品一区二区不卡| 欧美日韩国产高清一区| 国产精品久久久久久久浪潮网站| 日本欧美韩国一区三区| 91亚洲男人天堂| 久久久久青草大香线综合精品| 一区二区三区在线播| 国产一区二区看久久| 欧美日韩国产电影| 亚洲日本在线看| 国产aⅴ综合色| 欧美一区二区免费观在线| 亚洲在线成人精品| av成人免费在线观看| 久久精子c满五个校花| 日韩av网站在线观看| 欧美性大战久久久| 国产精品久久久一本精品 | 欧美三区在线视频| 亚洲欧美中日韩| 国产酒店精品激情| 91精品国产免费| 日韩不卡一区二区三区| 欧美日韩精品三区| 悠悠色在线精品| 99久久精品国产麻豆演员表| 国产嫩草影院久久久久| 国产乱码精品1区2区3区| 日韩美女主播在线视频一区二区三区 | 欧洲生活片亚洲生活在线观看| 国产精品入口麻豆九色| 国产成人精品影视| 精品国产电影一区二区| 久久精品国产一区二区| 日韩午夜小视频| 青青国产91久久久久久| 日韩一级在线观看| 韩国毛片一区二区三区| 精品电影一区二区三区| 国内精品不卡在线| 国产日韩欧美不卡| 92精品国产成人观看免费| 亚洲乱码国产乱码精品精的特点| 成人性色生活片| 亚洲色图第一区| 欧美色倩网站大全免费| 亚洲成人资源在线| 91精品国产91久久久久久一区二区| 日本亚洲视频在线| 久久久久久亚洲综合| bt欧美亚洲午夜电影天堂| 一区二区三区在线观看国产| 精品视频一区 二区 三区| 秋霞午夜av一区二区三区| 久久婷婷综合激情| 成人一级片在线观看| 亚洲精品国产品国语在线app| 欧美日韩1234| 国产精品资源网站| 一区二区国产盗摄色噜噜| 欧美男同性恋视频网站| 韩国中文字幕2020精品| 亚洲特黄一级片| 欧美人与禽zozo性伦| 久99久精品视频免费观看| 中文字幕精品综合| 欧美三级视频在线| 狠狠色丁香久久婷婷综合_中 | 高清国产一区二区三区| 亚洲一区视频在线| www激情久久| 在线观看国产日韩| 国产精品99精品久久免费| 一区二区三区在线观看国产| 精品动漫一区二区三区在线观看| 成人av网站在线观看| 日韩精品成人一区二区三区| 久久香蕉国产线看观看99| 在线视频一区二区三区| 国产一区欧美日韩| 天堂va蜜桃一区二区三区 | 色综合色综合色综合| 久久国产人妖系列| 亚洲综合成人在线视频| 欧美极品少妇xxxxⅹ高跟鞋| 欧美一区二区三区四区五区| 色综合咪咪久久| 国产suv一区二区三区88区| 日本最新不卡在线| 亚洲制服丝袜av| 亚洲欧洲综合另类| 国产精品午夜在线| www欧美成人18+| 欧美一级免费观看| 在线免费不卡电影| 97精品久久久午夜一区二区三区 | 在线观看亚洲一区| eeuss鲁片一区二区三区| 国产精品99久久久久久久女警| 日精品一区二区| 午夜久久电影网| 一区二区三区色| 亚洲激情五月婷婷| 亚洲欧美国产高清| 一区二区在线看| 综合婷婷亚洲小说| 亚洲视频一区在线观看| 中文字幕一区二区三区在线不卡| 国产婷婷精品av在线| 久久午夜色播影院免费高清| 精品日韩一区二区| 久久在线免费观看| 国产精品久久二区二区| 337p日本欧洲亚洲大胆精品| 日韩欧美国产综合一区| 欧美一区二区不卡视频| 日韩一卡二卡三卡四卡| 日韩免费视频线观看| 欧美xxxx在线观看| 精品裸体舞一区二区三区| 欧美日本韩国一区| 日韩精品一区二区三区在线| 精品国产免费一区二区三区香蕉| 欧美成人一区二区三区| 久久久久久久久久久久久久久99 | 欧美高清一级片在线| 欧美一区二区三区免费大片 | 欧美亚洲国产一区在线观看网站| 91蜜桃在线观看| 在线观看不卡一区| 日韩欧美视频在线| 国产欧美一区二区精品仙草咪| 欧美韩国日本综合| 一区二区在线免费| 久久精品72免费观看| 国产精品伊人色| 91美女福利视频| 777xxx欧美| 国产精品久久久久aaaa樱花| 亚洲午夜日本在线观看| 国内精品免费**视频| 色一区在线观看| 51久久夜色精品国产麻豆| 久久老女人爱爱| 亚洲一区二区三区视频在线| 久久99精品国产.久久久久久| 99这里都是精品| 日韩视频免费观看高清完整版 | 韩国精品主播一区二区在线观看 | 久久99久久精品欧美| av中文字幕亚洲| 日韩欧美国产一区二区三区 | 亚洲欧美日韩中文字幕一区二区三区| 亚洲成av人**亚洲成av**| 国产美女在线精品| 欧美怡红院视频| 国产欧美在线观看一区| 日本 国产 欧美色综合|