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

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

?? elsubmittag.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * $Id: ELSubmitTag.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.SubmitTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Tag for input fields of type "submit".
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.html.SubmitTag</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 ELSubmitTag extends SubmitTag {

    /**
     * Instance variable mapped to "accessKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String accessKeyExpr;
    /**
     * Instance variable mapped to "alt" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String altExpr;
    /**
     * Instance variable mapped to "altKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String altKeyExpr;
    /**
     * Instance variable mapped to "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String bundleExpr;
    /**
     * Instance variable mapped to "disabled" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String disabledExpr;
    /**
     * Instance variable mapped to "indexed" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String indexedExpr;
    /**
     * Instance variable mapped to "onblur" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onblurExpr;
    /**
     * Instance variable mapped to "onchange" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onchangeExpr;
    /**
     * Instance variable mapped to "onclick" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onclickExpr;
    /**
     * Instance variable mapped to "ondblclick" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String ondblclickExpr;
    /**
     * Instance variable mapped to "onfocus" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onfocusExpr;
    /**
     * Instance variable mapped to "onkeydown" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onkeydownExpr;
    /**
     * Instance variable mapped to "onkeypress" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onkeypressExpr;
    /**
     * Instance variable mapped to "onkeyup" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onkeyupExpr;
    /**
     * Instance variable mapped to "onmousedown" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onmousedownExpr;
    /**
     * Instance variable mapped to "onmousemove" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onmousemoveExpr;
    /**
     * Instance variable mapped to "onmouseout" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onmouseoutExpr;
    /**
     * Instance variable mapped to "onmouseover" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onmouseoverExpr;
    /**
     * Instance variable mapped to "onmouseup" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String onmouseupExpr;
    /**
     * Instance variable mapped to "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String propertyExpr;
    /**
     * Instance variable mapped to "style" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String styleExpr;
    /**
     * Instance variable mapped to "styleClass" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String styleClassExpr;
    /**
     * Instance variable mapped to "styleId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String styleIdExpr;
    /**
     * Instance variable mapped to "tabindex" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String tabindexExpr;
    /**
     * Instance variable mapped to "title" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String titleExpr;
    /**
     * Instance variable mapped to "titleKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String titleKeyExpr;
    /**
     * Instance variable mapped to "value" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String valueExpr;

    /**
     * Getter method for "accessKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAccesskeyExpr() { return (accessKeyExpr); }
    /**
     * Getter method for "alt" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAltExpr() { return (altExpr); }
    /**
     * Getter method for "altKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAltKeyExpr() { return (altKeyExpr); }
    /**
     * Getter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getBundleExpr() { return (bundleExpr); }
    /**
     * Getter method for "disabled" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getDisabledExpr() { return (disabledExpr); }
    /**
     * Getter method for "indexed" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getIndexedExpr() { return (indexedExpr); }
    /**
     * Getter method for "onblur" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnblurExpr() { return (onblurExpr); }
    /**
     * Getter method for "onchange" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnchangeExpr() { return (onchangeExpr); }
    /**
     * Getter method for "onclick" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnclickExpr() { return (onclickExpr); }
    /**
     * Getter method for "ondblclick" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOndblclickExpr() { return (ondblclickExpr); }
    /**
     * Getter method for "onfocus" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnfocusExpr() { return (onfocusExpr); }
    /**
     * Getter method for "onkeydown" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnkeydownExpr() { return (onkeydownExpr); }
    /**
     * Getter method for "onkeypress" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnkeypressExpr() { return (onkeypressExpr); }
    /**
     * Getter method for "onkeyup" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnkeyupExpr() { return (onkeyupExpr); }
    /**
     * Getter method for "onmousedown" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnmousedownExpr() { return (onmousedownExpr); }
    /**
     * Getter method for "onmousemove" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnmousemoveExpr() { return (onmousemoveExpr); }
    /**
     * Getter method for "onmouseout" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnmouseoutExpr() { return (onmouseoutExpr); }
    /**
     * Getter method for "onmouseover" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnmouseoverExpr() { return (onmouseoverExpr); }
    /**
     * Getter method for "onmouseup" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOnmouseupExpr() { return (onmouseupExpr); }
    /**
     * Getter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPropertyExpr() { return (propertyExpr); }
    /**
     * Getter method for "style" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getStyleExpr() { return (styleExpr); }
    /**
     * Getter method for "styleClass" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getStyleClassExpr() { return (styleClassExpr); }
    /**
     * Getter method for "styleId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getStyleIdExpr() { return (styleIdExpr); }
    /**
     * Getter method for "tabindex" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTabindexExpr() { return (tabindexExpr); }
    /**
     * Getter method for "title" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTitleExpr() { return (titleExpr); }
    /**
     * Getter method for "titleKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTitleKeyExpr() { return (titleKeyExpr); }
    /**
     * Getter method for "value" tag attribute.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲色图欧美在线| 国产精品每日更新在线播放网址| 国产精品一区二区91| 亚洲欧美激情视频在线观看一区二区三区| 91精品国产综合久久国产大片| 成人精品视频一区二区三区| 日韩精品一二三四| 国产精品乱码妇女bbbb| 91精品福利在线一区二区三区| 成人综合在线网站| 毛片av中文字幕一区二区| 亚洲麻豆国产自偷在线| 久久午夜免费电影| 91精品国产丝袜白色高跟鞋| 色综合天天综合在线视频| 国产在线一区二区| 日韩电影在线观看电影| 亚洲综合一区二区| 亚洲视频在线一区二区| 久久久亚洲综合| 欧美一区二区黄| 欧美三级在线视频| 欧美这里有精品| 色吧成人激情小说| av成人免费在线| 成人免费高清在线观看| 国产麻豆精品一区二区| 久久精品国产久精国产| 日韩av电影免费观看高清完整版 | 日本午夜一区二区| 一区二区三区精品在线观看| 国产精品午夜电影| 国产午夜三级一区二区三| 2017欧美狠狠色| 久久久久久久网| 国产日产欧产精品推荐色| 久久这里只有精品视频网| 精品99久久久久久| 久久影院午夜论| 国产色综合久久| 日本一区二区免费在线观看视频| 久久久久久日产精品| 国产亚洲精久久久久久| 国产欧美精品区一区二区三区 | 国产在线视频一区二区三区| 精品一区二区三区av| 久久国产乱子精品免费女| 日本va欧美va瓶| 日韩电影在线一区| 丝袜亚洲另类欧美| 亚洲成人在线观看视频| 亚洲综合在线电影| 曰韩精品一区二区| 亚洲欧洲日韩在线| 亚洲欧洲精品一区二区精品久久久 | 日本一区二区三区在线观看| 久久综合资源网| 精品播放一区二区| 26uuu国产在线精品一区二区| 日韩一区二区三区视频| 欧美一区二区女人| 久久嫩草精品久久久久| 国产清纯美女被跳蛋高潮一区二区久久w | 亚洲精品一区二区三区精华液| 欧美麻豆精品久久久久久| 欧美视频你懂的| 欧美日韩dvd在线观看| 欧美欧美欧美欧美首页| 欧美色涩在线第一页| 欧美伦理电影网| 欧美一区二区三区播放老司机| 精品精品欲导航| 久久久久久久久久久久久女国产乱| 国产天堂亚洲国产碰碰| 欧美国产视频在线| 亚洲欧美一区二区三区孕妇| 一区二区三区四区视频精品免费| 一区二区三区日本| 日韩vs国产vs欧美| 激情五月婷婷综合网| 国产福利电影一区二区三区| www.综合网.com| 色天天综合久久久久综合片| 日韩视频中午一区| 国产亚洲精品免费| 亚洲精品免费看| 日本不卡不码高清免费观看| 国产美女精品在线| 91久久线看在观草草青青| 51精品视频一区二区三区| 2023国产精品| 亚洲国产经典视频| 艳妇臀荡乳欲伦亚洲一区| 看电视剧不卡顿的网站| 国产ts人妖一区二区| 91极品视觉盛宴| 日韩美女一区二区三区| 国产精品护士白丝一区av| 亚洲.国产.中文慕字在线| 国产在线视视频有精品| 92精品国产成人观看免费| 在线免费观看视频一区| 国产肉丝袜一区二区| 亚洲成在线观看| 国产成人三级在线观看| 欧美日韩久久一区二区| 欧美国产一区在线| 日日摸夜夜添夜夜添亚洲女人| 国产v日产∨综合v精品视频| 欧美日韩国产成人在线91| 欧美一区二区三区视频在线| 一区二区三区四区中文字幕| 极品少妇xxxx精品少妇偷拍| 91成人看片片| 欧美变态口味重另类| 日韩高清一区二区| 日本韩国欧美在线| 欧美一区二区视频观看视频| 久久伊人中文字幕| 日韩电影在线免费| 91极品美女在线| 日韩欧美中文字幕制服| 中文字幕av资源一区| 亚洲成国产人片在线观看| 99久久精品一区二区| 精品久久久久久久人人人人传媒 | 555www色欧美视频| 亚洲精品综合在线| 风间由美一区二区av101| 日韩手机在线导航| 天天亚洲美女在线视频| 91影视在线播放| 久久久久亚洲综合| 蜜臀久久99精品久久久久宅男 | 精品视频1区2区3区| 亚洲天堂福利av| 国产suv精品一区二区三区| 日韩精品一区二区三区视频在线观看 | 中文字幕欧美日本乱码一线二线| 免费日韩伦理电影| 91精品国产综合久久小美女| 依依成人精品视频| 成人sese在线| 国产精品久久久久久久久免费丝袜| 成人午夜在线免费| 国产精品天干天干在观线| 国产伦精品一区二区三区在线观看| 欧美肥妇毛茸茸| 三级久久三级久久| 欧美久久久影院| 视频一区视频二区中文| 欧美三级在线播放| 亚洲日穴在线视频| 91社区在线播放| 亚洲免费av高清| 在线观看三级视频欧美| 亚洲蜜桃精久久久久久久| 色av一区二区| 亚洲国产精品一区二区久久恐怖片| 91福利视频久久久久| 亚洲高清久久久| 欧美精品日韩一区| 人人精品人人爱| 欧美电影精品一区二区| 久久精品国产一区二区三| 欧美精品v国产精品v日韩精品 | 亚洲精品国产精华液| 色综合久久天天综合网| 国产精品不卡一区二区三区| 成人免费三级在线| 国产精品不卡在线观看| 色视频欧美一区二区三区| 亚洲一区二区三区四区五区黄| 在线观看日韩精品| 国产在线精品视频| 欧美经典一区二区三区| 不卡的看片网站| 亚洲网友自拍偷拍| 欧美一区二区美女| 国产精品一级片在线观看| 国产日韩欧美精品综合| 成人自拍视频在线观看| 亚洲欧美另类小说| 欧美视频一区二区三区在线观看| 青青草国产精品97视觉盛宴| 26uuu色噜噜精品一区| 99视频在线精品| 亚洲国产成人av网| 久久亚洲欧美国产精品乐播| 国产精品性做久久久久久| 欧美国产日韩在线观看| 欧美美女网站色| 国产成+人+日韩+欧美+亚洲| 亚洲丝袜美腿综合| 欧美成人在线直播| a级高清视频欧美日韩| 亚洲靠逼com| 久久久久99精品国产片| 欧美性三三影院| 成人涩涩免费视频|