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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? elmessagetag.java

?? struts的源代碼
?? JAVA
字號(hào):
/*
 * $Id: ELMessageTag.java 54933 2004-10-16 17:04:52Z germuska $ 
 *
 * 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.bean;

import javax.servlet.jsp.JspException;

import org.apache.struts.taglib.bean.MessageTag;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Custom tag that retrieves an internationalized messages string (with
 * optional parametric replacement) from the <code>ActionResources</code>
 * object stored as a context attribute by our associated
 * <code>ActionServlet</code> implementation.
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.bean.MessageTag</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: 54933 $
 */
public class ELMessageTag extends MessageTag {

    /**
     * Instance variable mapped to "arg0" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String arg0Expr;
    /**
     * Instance variable mapped to "arg1" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String arg1Expr;
    /**
     * Instance variable mapped to "arg2" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String arg2Expr;
    /**
     * Instance variable mapped to "arg3" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String arg3Expr;
    /**
     * Instance variable mapped to "arg4" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String arg4Expr;
    /**
     * Instance variable mapped to "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String bundleExpr;
    /**
     * Instance variable mapped to "key" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String keyExpr;
    /**
     * 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 "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String propertyExpr;
    /**
     * Instance variable mapped to "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String scopeExpr;

    /**
     * Getter method for "arg0" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getArg0Expr() { return (arg0Expr); }
    /**
     * Getter method for "arg1" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getArg1Expr() { return (arg1Expr); }
    /**
     * Getter method for "arg2" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getArg2Expr() { return (arg2Expr); }
    /**
     * Getter method for "arg3" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getArg3Expr() { return (arg3Expr); }
    /**
     * Getter method for "arg4" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getArg4Expr() { return (arg4Expr); }
    /**
     * Getter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getBundleExpr() { return (bundleExpr); }
    /**
     * Getter method for "key" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getKeyExpr() { return (keyExpr); }
    /**
     * 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 "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPropertyExpr() { return (propertyExpr); }
    /**
     * Getter method for "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getScopeExpr() { return (scopeExpr); }

    /**
     * Setter method for "arg0" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setArg0Expr(String arg0Expr) { this.arg0Expr = arg0Expr; }
    /**
     * Setter method for "arg1" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setArg1Expr(String arg1Expr) { this.arg1Expr = arg1Expr; }
    /**
     * Setter method for "arg2" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setArg2Expr(String arg2Expr) { this.arg2Expr = arg2Expr; }
    /**
     * Setter method for "arg3" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setArg3Expr(String arg3Expr) { this.arg3Expr = arg3Expr; }
    /**
     * Setter method for "arg4" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setArg4Expr(String arg4Expr) { this.arg4Expr = arg4Expr; }
    /**
     * Setter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setBundleExpr(String bundleExpr) { this.bundleExpr = bundleExpr; }
    /**
     * Setter method for "key" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setKeyExpr(String keyExpr) { this.keyExpr = keyExpr; }
    /**
     * 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 "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setPropertyExpr(String propertyExpr) { this.propertyExpr = propertyExpr; }
    /**
     * Setter method for "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setScopeExpr(String scopeExpr) { this.scopeExpr = scopeExpr; }

    /**
     * Resets attribute values for tag reuse.
     */
    public void release()
    {
        super.release();
        setArg0Expr(null);
        setArg1Expr(null);
        setArg2Expr(null);
        setArg3Expr(null);
        setArg4Expr(null);
        setBundleExpr(null);
        setKeyExpr(null);
        setLocaleExpr(null);
        setNameExpr(null);
        setPropertyExpr(null);
        setScopeExpr(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("arg0", getArg0Expr(),
                                            this, pageContext)) != null)
            setArg0(string);

        if ((string = EvalHelper.evalString("arg1", getArg1Expr(),
                                            this, pageContext)) != null)
            setArg1(string);

        if ((string = EvalHelper.evalString("arg2", getArg2Expr(),
                                            this, pageContext)) != null)
            setArg2(string);

        if ((string = EvalHelper.evalString("arg3", getArg3Expr(),
                                            this, pageContext)) != null)
            setArg3(string);

        if ((string = EvalHelper.evalString("arg4", getArg4Expr(),
                                            this, pageContext)) != null)
            setArg4(string);

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

        if ((string = EvalHelper.evalString("key", getKeyExpr(),
                                            this, pageContext)) != null)
            setKey(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("property", getPropertyExpr(),
                                            this, pageContext)) != null)
            setProperty(string);

        if ((string = EvalHelper.evalString("scope", getScopeExpr(),
                                            this, pageContext)) != null)
            setScope(string);
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二三区好的| 日韩毛片在线免费观看| 日本91福利区| 欧美草草影院在线视频| 国产麻豆成人传媒免费观看| 国产视频在线观看一区二区三区 | 日韩精品影音先锋| 麻豆极品一区二区三区| 国产午夜精品一区二区三区四区 | 看电影不卡的网站| 国产日韩精品久久久| 波多野结衣欧美| 一区二区三区日韩在线观看| 777亚洲妇女| 国产精品66部| 香蕉成人伊视频在线观看| 日韩一级黄色大片| 成人国产精品视频| 香蕉乱码成人久久天堂爱免费| 日韩欧美123| 91美女片黄在线观看| 婷婷夜色潮精品综合在线| 久久你懂得1024| 欧美性videosxxxxx| 精品一区二区三区视频在线观看| 欧美国产精品一区二区| 欧美日韩国产片| 国产jizzjizz一区二区| 偷拍一区二区三区四区| 国产日韩欧美高清在线| 欧美伊人精品成人久久综合97| 精品在线亚洲视频| 亚洲激情在线激情| 亚洲精品一区二区三区精华液 | 欧美性做爰猛烈叫床潮| 国产精品一区久久久久| 亚洲国产成人va在线观看天堂| 久久免费精品国产久精品久久久久| 色素色在线综合| 国产老女人精品毛片久久| 亚洲国产综合在线| 中文字幕高清不卡| 精品国精品自拍自在线| 欧美日韩激情一区| 99这里只有久久精品视频| 精品一区二区国语对白| 石原莉奈在线亚洲三区| 亚洲免费观看高清完整| 国产调教视频一区| 欧美精品一区二区三| 欧美人牲a欧美精品| 日本精品一级二级| 99久久精品国产毛片| 国产经典欧美精品| 久久99热国产| 日韩中文字幕亚洲一区二区va在线| 亚洲欧美经典视频| 中文字幕一区二区日韩精品绯色| 欧美成人艳星乳罩| 日韩一区二区高清| 91超碰这里只有精品国产| 91国产成人在线| 日本精品视频一区二区三区| 91在线视频免费观看| av成人动漫在线观看| 国产91精品入口| 懂色av一区二区三区免费观看| 国产美女在线精品| 国产精品中文字幕一区二区三区| 精品一区二区三区免费观看| 奇米亚洲午夜久久精品| 免费观看成人鲁鲁鲁鲁鲁视频| 丝袜a∨在线一区二区三区不卡| 亚洲午夜精品久久久久久久久| 亚洲精品视频在线| 亚洲午夜电影网| 午夜精品久久久久久久久| 午夜精品久久久久久久99樱桃| 亚洲 欧美综合在线网络| 亚洲chinese男男1069| 婷婷综合另类小说色区| 奇米综合一区二区三区精品视频| 日韩黄色在线观看| 另类欧美日韩国产在线| 国产一区二区免费看| 国产成人a级片| 91无套直看片红桃| 欧美午夜寂寞影院| 欧美电影影音先锋| 精品国产乱码久久久久久免费 | 2019国产精品| 欧美激情自拍偷拍| 亚洲男女一区二区三区| 悠悠色在线精品| 奇米亚洲午夜久久精品| 国产精品一二三在| 99久久精品一区二区| 欧美色图激情小说| 日韩欧美中文字幕制服| 欧美极品美女视频| 一区二区三区在线观看国产| 日本欧美一区二区三区| 国产成人自拍网| 欧美在线免费观看亚洲| 日韩免费观看高清完整版在线观看| 亚洲精品一区二区三区影院 | 久久先锋影音av鲁色资源| 国产欧美精品一区二区三区四区| 亚洲欧美日韩中文播放| 视频一区二区国产| 豆国产96在线|亚洲| 欧美三级电影精品| 久久久久国产免费免费| 亚洲一区中文在线| 国产剧情一区二区三区| 欧美网站大全在线观看| 久久久久久久久岛国免费| 一区二区高清视频在线观看| 青青国产91久久久久久| 99re这里只有精品首页| 日韩欧美国产麻豆| 一区二区三区自拍| 国产电影一区在线| 欧美精品免费视频| 中文字幕一区二区三区色视频| 日本网站在线观看一区二区三区 | 一区二区三区日韩精品视频| 国模无码大尺度一区二区三区| 色网综合在线观看| 久久先锋影音av| 日韩精品五月天| 一本一道久久a久久精品综合蜜臀 一本一道综合狠狠老 | 欧美一区二区三区四区视频| 国产精品久线在线观看| 久久机这里只有精品| 欧美日韩另类一区| 亚洲视频你懂的| 国产mv日韩mv欧美| 亚洲精品一区二区三区99| 性感美女极品91精品| 色999日韩国产欧美一区二区| 久久一区二区三区四区| 日韩国产在线观看| 欧美午夜片在线看| 亚洲人成网站影音先锋播放| 国产尤物一区二区| 精品国产乱码久久久久久牛牛 | 91麻豆精品久久久久蜜臀| 亚洲狠狠丁香婷婷综合久久久| 大胆亚洲人体视频| 国产午夜久久久久| 国产精品一区二区久激情瑜伽| 欧美一区二区不卡视频| 天天av天天翘天天综合网 | 日韩一二三区视频| 午夜视频在线观看一区| 欧美在线高清视频| 一区二区三区四区高清精品免费观看| 粉嫩13p一区二区三区| 国产欧美1区2区3区| 国产高清在线观看免费不卡| 日韩精品一区二区三区swag| 免费不卡在线观看| 日韩精品中文字幕一区二区三区| 日本视频免费一区| 日韩欧美亚洲另类制服综合在线 | 欧美videofree性高清杂交| 天天爽夜夜爽夜夜爽精品视频| 精品视频免费在线| 五月婷婷综合激情| 欧美日韩第一区日日骚| 日韩成人午夜电影| 日韩精品一区二区在线| 韩国三级在线一区| 日本一区二区视频在线| 成人a级免费电影| 亚洲欧美日韩国产另类专区| 色久综合一二码| 天堂一区二区在线| 欧美mv和日韩mv国产网站| 国产mv日韩mv欧美| 亚洲男人的天堂在线观看| 欧美三级韩国三级日本三斤| 婷婷综合另类小说色区| 欧美成人乱码一区二区三区| 国产精品原创巨作av| 亚洲欧洲精品成人久久奇米网| 91香蕉视频污在线| 午夜精品久久久久久久久| 日韩欧美在线123| 从欧美一区二区三区| 伊人婷婷欧美激情| 日韩精品一区二区三区中文精品| 国产大陆精品国产| 亚洲精品成人少妇| 欧美mv和日韩mv国产网站| 成人网男人的天堂| 五月开心婷婷久久| 国产欧美在线观看一区| 日本韩国欧美国产|