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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? elredirecttag.java

?? struts的源代碼
?? JAVA
字號(hào):
/*
 * $Id: ELRedirectTag.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.logic;

import org.apache.struts.taglib.logic.RedirectTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Generate a URL-encoded redirect to the specified URI.
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.logic.RedirectTag</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 ELRedirectTag extends RedirectTag {

    /**
     * Instance variable mapped to "action" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String actionExpr;
    /**
     * Instance variable mapped to "anchor" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String anchorExpr;
    /**
     * Instance variable mapped to "forward" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String forwardExpr;
    /**
     * Instance variable mapped to "href" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String hrefExpr;
    /**
     * Instance variable mapped to "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String nameExpr;
    /**
     * Instance variable mapped to "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String pageExpr;
    /**
     * Instance variable mapped to "paramId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramIdExpr;
    /**
     * Instance variable mapped to "paramName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramNameExpr;
    /**
     * Instance variable mapped to "paramProperty" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramPropertyExpr;
    /**
     * Instance variable mapped to "paramScope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramScopeExpr;
    /**
     * 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;
    /**
     * Instance variable mapped to "transaction" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String transactionExpr;
    /**
     * Instance variable mapped to "useLocalEncoding" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String useLocalEncodingExpr;

    /**
     * Getter method for "action" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getActionExpr() { return (actionExpr); }
    /**
     * Getter method for "anchor" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAnchorExpr() { return (anchorExpr); }
    /**
     * Getter method for "forward" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getForwardExpr() { return (forwardExpr); }
    /**
     * Getter method for "href" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getHrefExpr() { return (hrefExpr); }
    /**
     * Getter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNameExpr() { return (nameExpr); }
    /**
     * Getter method for "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPageExpr() { return (pageExpr); }
    /**
     * Getter method for "paramId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamIdExpr() { return (paramIdExpr); }
    /**
     * Getter method for "paramName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamNameExpr() { return (paramNameExpr); }
    /**
     * Getter method for "paramProperty" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamPropertyExpr() { return (paramPropertyExpr); }
    /**
     * Getter method for "paramScope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamScopeExpr() { return (paramScopeExpr); }
    /**
     * 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); }
    /**
     * Getter method for "transaction" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTransactionExpr() { return (transactionExpr); }
    /**
     * Getter method for "useLocalEncoding" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getUseLocalEncodingExpr() { return (useLocalEncodingExpr); }

    /**
     * Setter method for "action" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setActionExpr(String actionExpr) { this.actionExpr = actionExpr; }
    /**
     * Setter method for "anchor" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setAnchorExpr(String anchorExpr) { this.anchorExpr = anchorExpr; }
    /**
     * Setter method for "forward" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setForwardExpr(String forwardExpr) { this.forwardExpr = forwardExpr; }
    /**
     * Setter method for "href" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setHrefExpr(String hrefExpr) { this.hrefExpr = hrefExpr; }
    /**
     * Setter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setNameExpr(String nameExpr) { this.nameExpr = nameExpr; }
    /**
     * Setter method for "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setPageExpr(String pageExpr) { this.pageExpr = pageExpr; }
    /**
     * Setter method for "paramId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setParamIdExpr(String paramIdExpr) { this.paramIdExpr = paramIdExpr; }
    /**
     * Setter method for "paramName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setParamNameExpr(String paramNameExpr) { this.paramNameExpr = paramNameExpr; }
    /**
     * Setter method for "paramProperty" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setParamPropertyExpr(String paramPropertyExpr) { this.paramPropertyExpr = paramPropertyExpr; }
    /**
     * Setter method for "paramScope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setParamScopeExpr(String paramScopeExpr) { this.paramScopeExpr = paramScopeExpr; }
    /**
     * 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; }
    /**
     * Setter method for "transaction" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setTransactionExpr(String transactionExpr) { this.transactionExpr = transactionExpr; }
    /**
     * Setter method for "useLocalEncoding" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setUseLocalEncodingExpr(String useLocalEncodingExpr) { this.useLocalEncodingExpr = useLocalEncodingExpr; }

    /**
     * Resets attribute values for tag reuse.
     */
    public void release()
    {
        super.release();
        setActionExpr(null);
        setAnchorExpr(null);
        setForwardExpr(null);
        setHrefExpr(null);
        setNameExpr(null);
        setPageExpr(null);
        setParamIdExpr(null);
        setParamNameExpr(null);
        setParamPropertyExpr(null);
        setParamScopeExpr(null);
        setPropertyExpr(null);
        setScopeExpr(null);
        setTransactionExpr(null);
        setUseLocalEncodingExpr(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;
        Boolean bool    = null;

        if ((string = EvalHelper.evalString("action", getActionExpr(),
                                            this, pageContext)) != null)
            setAction(string);

        if ((string = EvalHelper.evalString("anchor", getAnchorExpr(),
                                            this, pageContext)) != null)
            setAnchor(string);

        if ((string = EvalHelper.evalString("forward", getForwardExpr(),
                                            this, pageContext)) != null)
            setForward(string);

        if ((string = EvalHelper.evalString("href", getHrefExpr(),
                                            this, pageContext)) != null)
            setHref(string);

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

        if ((string = EvalHelper.evalString("page", getPageExpr(),
                                            this, pageContext)) != null)
            setPage(string);

        if ((string = EvalHelper.evalString("paramId", getParamIdExpr(),
                                            this, pageContext)) != null)
            setParamId(string);

        if ((string = EvalHelper.evalString("paramName", getParamNameExpr(),
                                            this, pageContext)) != null)
            setParamName(string);

        if ((string = EvalHelper.evalString("paramProperty", getParamPropertyExpr(),
                                            this, pageContext)) != null)
            setParamProperty(string);

        if ((string = EvalHelper.evalString("paramScope", getParamScopeExpr(),
                                            this, pageContext)) != null)
            setParamScope(string);

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

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

        if ((bool = EvalHelper.evalBoolean("transaction", getTransactionExpr(),
                                           this, pageContext)) != null)
            setTransaction(bool.booleanValue());

        if ((bool = EvalHelper.evalBoolean("useLocalEncoding", getUseLocalEncodingExpr(),
                                           this, pageContext)) != null)
            setUseLocalEncoding(bool.booleanValue());
    }
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91福利在线看| 国产精品亚洲а∨天堂免在线| 日韩av在线发布| 激情五月激情综合网| 99re成人精品视频| 在线播放中文字幕一区| 久久久九九九九| 亚洲欧美色图小说| 男男视频亚洲欧美| 国产v综合v亚洲欧| 欧美系列一区二区| 久久综合久久综合亚洲| 亚洲欧美日韩国产成人精品影院 | 韩国女主播成人在线观看| 国产精品 日产精品 欧美精品| 99久久精品国产导航| 91精品国产一区二区三区| 国产三区在线成人av| 一二三四社区欧美黄| 国内精品免费在线观看| 在线视频观看一区| 黄色小说综合网站| 色婷婷av一区| 久久这里都是精品| 亚洲国产一区二区三区青草影视| 国内精品伊人久久久久av一坑| 色婷婷激情一区二区三区| 欧美大尺度电影在线| 伊人一区二区三区| 国产很黄免费观看久久| 欧美一三区三区四区免费在线看 | 不卡电影免费在线播放一区| 欧美一卡二卡在线| 樱花草国产18久久久久| 国产69精品久久99不卡| 欧美成人a在线| 亚洲成人你懂的| 99re66热这里只有精品3直播 | 国产精品一区二区三区四区 | 免费观看在线综合色| 91国产福利在线| 国产精品热久久久久夜色精品三区| 丝袜a∨在线一区二区三区不卡| 成人黄色小视频| 日韩免费福利电影在线观看| 亚洲综合免费观看高清在线观看| 成人免费视频一区二区| 26uuu亚洲婷婷狠狠天堂| 偷窥国产亚洲免费视频| 日本丰满少妇一区二区三区| 中文字幕欧美激情| 国产乱码精品1区2区3区| 日韩精品在线看片z| 午夜精品视频一区| 91黄色在线观看| 最新中文字幕一区二区三区| 国产成人aaa| 精品国精品自拍自在线| 男男gaygay亚洲| 91精品国产综合久久久久久久| 亚洲综合久久av| 色综合久久久久久久久久久| 国产精品美女久久久久久久网站| 国产一区亚洲一区| 欧美v日韩v国产v| 蜜桃av噜噜一区二区三区小说| 欧美日韩国产在线观看| 亚洲影视在线观看| 在线一区二区三区做爰视频网站| 中文字幕字幕中文在线中不卡视频| 春色校园综合激情亚洲| 中文av一区二区| a亚洲天堂av| 综合电影一区二区三区| 色婷婷国产精品| 亚洲精品欧美激情| 在线精品视频小说1| 亚洲福利一区二区| 欧美精品九九99久久| 美女在线一区二区| 精品久久久久一区二区国产| 国产一区二区三区观看| 国产午夜精品一区二区三区四区| 国产精品综合在线视频| 国产精品午夜在线| 91免费视频大全| 亚洲国产精品一区二区久久恐怖片| 欧洲一区二区三区在线| 亚洲18影院在线观看| 91精品国产综合久久久久久漫画| 久久aⅴ国产欧美74aaa| 久久精品这里都是精品| 成人午夜看片网址| 亚洲精品高清视频在线观看| 欧美日本免费一区二区三区| 日本成人中文字幕| 欧美精品一区二区三区在线| 成人一区二区视频| 亚洲精品国产精华液| 欧美日韩一区二区欧美激情| 蜜桃传媒麻豆第一区在线观看| 久久伊人中文字幕| 9l国产精品久久久久麻豆| 一区二区三区中文字幕电影| 5月丁香婷婷综合| 国产精品538一区二区在线| 成人免费一区二区三区视频 | 五月婷婷综合激情| 精品国产成人系列| 99久久精品99国产精品| 亚洲成a人片综合在线| 久久久久成人黄色影片| 91精品福利视频| 免费视频最近日韩| 国产精品国模大尺度视频| 欧美性欧美巨大黑白大战| 国产在线视视频有精品| 亚洲欧美一区二区久久| 欧美岛国在线观看| 96av麻豆蜜桃一区二区| 日本欧美加勒比视频| 中文乱码免费一区二区| 91精品久久久久久久久99蜜臂| 国产成人av电影| 天使萌一区二区三区免费观看| 国产偷国产偷精品高清尤物| 在线欧美日韩国产| 国产乱国产乱300精品| 亚洲超碰精品一区二区| 国产精品污www在线观看| 在线播放一区二区三区| heyzo一本久久综合| 日本不卡一区二区| 亚洲日穴在线视频| 久久久美女毛片| 欧美精品三级在线观看| 99久久777色| 狠狠色丁香久久婷婷综| 亚洲成人在线网站| 国产精品欧美一区二区三区| 日韩欧美国产综合一区| 欧美亚一区二区| 成人午夜视频在线观看| 看国产成人h片视频| 一区二区三区在线免费观看| 国产亚洲短视频| 51久久夜色精品国产麻豆| 91网站在线观看视频| 国产一区二区精品久久99 | 日韩欧美高清在线| 91久久人澡人人添人人爽欧美| 国产精品一品视频| 日韩va亚洲va欧美va久久| 一区二区三区不卡在线观看| 国产欧美日韩麻豆91| www国产成人免费观看视频 深夜成人网 | 欧美大片在线观看一区| 欧美在线|欧美| 94色蜜桃网一区二区三区| 国产成人午夜精品影院观看视频| 日韩激情视频在线观看| 亚洲一区电影777| 最新国产の精品合集bt伙计| 欧美激情一区三区| 久久久久国色av免费看影院| 日韩精品专区在线影院重磅| 在线播放视频一区| 欧美日韩国产三级| 色综合久久中文字幕| 91色|porny| 不卡视频免费播放| 国产91高潮流白浆在线麻豆 | 国产亚洲自拍一区| 欧美mv和日韩mv的网站| 欧美一区二区久久久| 8x8x8国产精品| 3d成人h动漫网站入口| 欧美日韩一区二区三区四区| 欧美日韩综合在线| 欧美亚洲禁片免费| 欧美羞羞免费网站| 欧美日韩三级一区| 欧美日本国产一区| 337p亚洲精品色噜噜| 日韩午夜三级在线| 日韩免费福利电影在线观看| 日韩欧美一区二区免费| 精品美女在线播放| 久久蜜臀精品av| 国产在线精品视频| 国产美女娇喘av呻吟久久| 国产尤物一区二区| 高清在线观看日韩| www.性欧美| 色成年激情久久综合| 欧美专区日韩专区| 5月丁香婷婷综合| 26uuu精品一区二区三区四区在线| 欧美videos大乳护士334| 国产婷婷色一区二区三区四区|