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

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

?? 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.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美艳星brazzers| 亚洲日本在线看| 亚洲色图在线播放| 免费观看成人鲁鲁鲁鲁鲁视频| 国产成人免费视频精品含羞草妖精| 欧美四级电影在线观看| 欧美国产日产图区| 免费成人在线网站| 国产色爱av资源综合区| 亚洲chinese男男1069| 成人免费视频免费观看| 欧美一区二区三区婷婷月色| 亚洲欧美日韩国产综合在线| 国产成人8x视频一区二区| 欧美一区二区三区色| 亚洲伊人色欲综合网| www.亚洲激情.com| 国产清纯白嫩初高生在线观看91 | 国产精品毛片久久久久久久| 午夜久久久久久电影| 色天天综合色天天久久| 国产欧美日韩麻豆91| 国产制服丝袜一区| 日韩免费观看高清完整版| 亚洲国产一区二区三区青草影视| 91在线国内视频| 国产精品无遮挡| 国产.欧美.日韩| 欧美激情中文不卡| 欧美精品久久一区二区三区| 亚洲最新视频在线播放| 国产伦精品一区二区三区在线观看| 日韩一区二区视频在线观看| 天天操天天干天天综合网| 欧美日韩一区二区在线视频| 一区二区三区**美女毛片| 91免费在线视频观看| 国产精品传媒入口麻豆| 国产91高潮流白浆在线麻豆| 久久精品日产第一区二区三区高清版| 国产揄拍国内精品对白| 国产日韩精品一区| 成人黄色片在线观看| 国产蜜臀av在线一区二区三区| 国产mv日韩mv欧美| 亚洲欧洲美洲综合色网| av一二三不卡影片| 亚洲女人****多毛耸耸8| 欧美在线观看视频在线| 日韩国产在线观看一区| 日韩欧美国产精品| 婷婷中文字幕一区三区| 色婷婷综合久久久中文一区二区| 青草国产精品久久久久久| 亚洲黄色尤物视频| 午夜私人影院久久久久| 99re亚洲国产精品| 一区二区三区精品在线观看| 一本一本久久a久久精品综合麻豆| 亚洲国产视频在线| 亚洲免费观看在线观看| 亚洲综合色婷婷| 2022国产精品视频| 日韩一区二区在线看片| 欧美亚洲一区三区| 色婷婷亚洲综合| 91丨porny丨在线| 成人h版在线观看| 国产成人日日夜夜| 激情久久五月天| 日本欧美在线观看| 日本不卡视频在线| 首页欧美精品中文字幕| 亚洲成人先锋电影| 亚洲一区二区三区四区五区黄| 自拍偷拍欧美精品| 亚洲男人电影天堂| 亚洲欧美乱综合| 亚洲精品成人少妇| 一区二区三区在线影院| 亚洲免费观看高清完整版在线| 中文字幕一区二区三区乱码在线| 国产欧美日韩综合| 国产精品青草久久| 国产精品国产自产拍高清av| 国产精品久久久一本精品| 中文字幕精品在线不卡| 国产精品久久久久久久久快鸭| 日本一二三不卡| 国产精品高清亚洲| 亚洲精品福利视频网站| 亚洲成人资源网| 五月婷婷久久综合| 久久成人18免费观看| 精品亚洲成a人在线观看| 国产精品中文字幕欧美| 丁香另类激情小说| 91啪九色porn原创视频在线观看| 99精品久久免费看蜜臀剧情介绍| 色综合天天综合狠狠| 亚洲欧洲国产日韩| 亚洲自拍都市欧美小说| 免费观看成人鲁鲁鲁鲁鲁视频| 国产久卡久卡久卡久卡视频精品| 国产精品99久久久久久宅男| 91免费视频观看| 欧美老年两性高潮| 久久蜜桃av一区二区天堂 | 欧美在线看片a免费观看| 欧美日韩成人激情| 久久影院视频免费| 亚洲精品亚洲人成人网| 日本人妖一区二区| jlzzjlzz亚洲日本少妇| 在线成人午夜影院| 国产精品欧美经典| 日韩成人免费看| 高清av一区二区| 欧美电影在线免费观看| 久久久久久**毛片大全| 亚洲精品视频在线| 黑人巨大精品欧美黑白配亚洲 | 色综合久久中文综合久久牛| 欧美电影在线免费观看| 一区精品在线播放| 日本欧美在线观看| 色欧美日韩亚洲| 精品1区2区在线观看| 亚洲精品久久久久久国产精华液| 久久精品国产秦先生| 91视频在线看| 26uuu久久综合| 亚洲免费观看高清在线观看| 国产在线视频一区二区| 欧美日韩三级在线| 国产精品久久久久四虎| 日韩不卡在线观看日韩不卡视频| 成人免费视频免费观看| 欧美刺激午夜性久久久久久久 | 亚洲香蕉伊在人在线观| 国产91综合网| 欧美一级高清大全免费观看| 亚洲色图.com| 成人永久免费视频| 精品久久久久久久久久久久久久久久久 | 欧美日本高清视频在线观看| 国产精品九色蝌蚪自拍| 国产高清视频一区| 日韩欧美中文字幕精品| 亚洲电影在线播放| 色婷婷综合久久久中文一区二区| 久久精品无码一区二区三区| 蜜臀精品久久久久久蜜臀| 在线观看www91| 国产在线播放一区三区四| 欧美精品 国产精品| 一区二区三区四区激情| 99久久精品99国产精品| 国产精品天天摸av网| 国产精品99久久久| 精品久久久久久久久久久院品网 | 久久伊人中文字幕| 蜜芽一区二区三区| 制服.丝袜.亚洲.另类.中文| 亚洲一区二区五区| 欧洲中文字幕精品| 亚洲一区二区在线观看视频| 91精品91久久久中77777| 亚洲日本在线看| 色综合久久久网| 亚洲综合丝袜美腿| 欧美亚洲国产一卡| 亚洲一区二区精品久久av| 91在线porny国产在线看| 中文字幕日韩欧美一区二区三区| 成人免费看的视频| 国产精品免费av| 99综合影院在线| 亚洲精品成人精品456| 欧美日韩国产美女| 日本欧美大码aⅴ在线播放| 日韩精品一区二区三区蜜臀 | 国内精品久久久久影院一蜜桃| 日韩精品一区二区三区中文精品 | 国产精品99久久久久| 欧美激情综合在线| 93久久精品日日躁夜夜躁欧美| 亚洲女厕所小便bbb| 欧美日韩久久久一区| 免费av成人在线| 免费人成网站在线观看欧美高清| 2021国产精品久久精品| 成人性色生活片免费看爆迷你毛片| 国产精品久久久久久久久久免费看 | 午夜久久久久久电影| 精品少妇一区二区三区视频免付费| 国产精品中文有码| 一区二区三区在线免费播放| 欧美高清视频www夜色资源网| 久久国产三级精品|