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

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

?? elimagetag.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * $Id: ELImageTag.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.html;

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

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

    /**
     * Instance variable mapped to "accessKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String accessKeyExpr;
    /**
     * Instance variable mapped to "align" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String alignExpr;
    /**
     * 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 "border" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String borderExpr;
    /**
     * 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 "locale" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String localeExpr;
    /**
     * 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 "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String pageExpr;
    /**
     * Instance variable mapped to "pageKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String pageKeyExpr;
    /**
     * Instance variable mapped to "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String propertyExpr;
    /**
     * Instance variable mapped to "src" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String srcExpr;
    /**
     * Instance variable mapped to "srcKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String srcKeyExpr;
    /**
     * 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 "align" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAlignExpr() { return (alignExpr); }
    /**
     * 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 "border" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getBorderExpr() { return (borderExpr); }
    /**
     * 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 "locale" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getLocaleExpr() { return (localeExpr); }
    /**
     * 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 "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPageExpr() { return (pageExpr); }
    /**
     * Getter method for "pageKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPageKeyExpr() { return (pageKeyExpr); }
    /**
     * Getter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPropertyExpr() { return (propertyExpr); }
    /**
     * Getter method for "src" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getSrcExpr() { return (srcExpr); }
    /**
     * Getter method for "srcKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getSrcKeyExpr() { return (srcKeyExpr); }
    /**
     * 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.
     * (Mapping set in associated BeanInfo class.)
     */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人a级片| 成人永久看片免费视频天堂| 中文字幕五月欧美| 综合久久久久久| 国产精品不卡视频| 亚洲色图视频免费播放| 日韩毛片一二三区| 亚洲综合av网| 日韩黄色免费网站| 黄色日韩三级电影| 懂色av一区二区夜夜嗨| av影院午夜一区| 在线日韩一区二区| 欧美色大人视频| 精品成人在线观看| 中国av一区二区三区| 亚洲视频在线一区二区| 亚洲国产一区二区视频| 日本美女视频一区二区| 国产在线看一区| 99re亚洲国产精品| 欧美精品在线视频| 国产亚洲短视频| 一区二区三区精品在线| 日韩精品电影在线观看| 国精产品一区一区三区mba桃花 | 精品国产伦理网| 国产亚洲短视频| 一区二区三区美女视频| 看电影不卡的网站| 91亚洲大成网污www| 欧美夫妻性生活| 久久色在线观看| 一区二区三区色| 老色鬼精品视频在线观看播放| 国产精品资源站在线| 色婷婷亚洲一区二区三区| 日韩美女视频一区二区在线观看| 欧美高清在线一区| 免费xxxx性欧美18vr| 国产传媒欧美日韩成人| 3d动漫精品啪啪1区2区免费| 欧美国产欧美亚州国产日韩mv天天看完整| 亚洲美女精品一区| 国产美女视频91| 欧美一区二区三区不卡| 国产精品不卡视频| 国精产品一区一区三区mba视频| 欧美综合欧美视频| 中文字幕成人在线观看| 麻豆国产一区二区| 欧美在线999| 国产精品免费av| 国产伦理精品不卡| 日韩欧美一区二区在线视频| 亚洲激情图片qvod| k8久久久一区二区三区| 久久蜜臀精品av| 极品少妇一区二区三区精品视频 | 一区二区三区四区激情 | 国产精品乱子久久久久| 奇米一区二区三区| 欧美久久久久免费| 午夜激情久久久| 欧美中文字幕亚洲一区二区va在线| 国产精品久久毛片a| 国产精品99久久久久久似苏梦涵 | 国产激情精品久久久第一区二区| 欧美精品自拍偷拍动漫精品| 亚洲国产精品一区二区尤物区| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 三级久久三级久久| 欧美乱熟臀69xxxxxx| 亚洲午夜免费福利视频| 在线亚洲欧美专区二区| 亚洲在线观看免费| 欧美老肥妇做.爰bbww| 婷婷国产v国产偷v亚洲高清| 欧美一区二区三区白人| 喷白浆一区二区| 久久这里只有精品6| 国产成人免费高清| 国产精品天干天干在观线| 97se狠狠狠综合亚洲狠狠| 亚洲精品日韩一| 正在播放亚洲一区| 麻豆精品在线观看| 国产亚洲精品aa| 99在线热播精品免费| 亚洲线精品一区二区三区八戒| 欧美少妇bbb| 久久精品国产亚洲aⅴ| 日韩欧美在线一区二区三区| 国产精品2024| 亚洲精品视频观看| 欧美一区二区网站| 成人免费视频免费观看| 亚洲精品久久久久久国产精华液| 91福利区一区二区三区| 蜜桃精品视频在线观看| 国产欧美视频一区二区三区| 在线免费av一区| 美女视频网站黄色亚洲| 国产精品久久久久四虎| 欧美视频完全免费看| 国产精品一区二区在线观看不卡 | 久久夜色精品国产噜噜av| 99久久伊人精品| 天堂久久一区二区三区| 国产日韩欧美一区二区三区乱码| 91女人视频在线观看| 日本午夜精品视频在线观看| 国产精品看片你懂得| 欧美一区二区大片| 9色porny自拍视频一区二区| 日本三级韩国三级欧美三级| 日本一区二区高清| 欧美一区三区二区| 91丨porny丨中文| 激情国产一区二区| 亚洲6080在线| 17c精品麻豆一区二区免费| 欧美一区欧美二区| 91福利精品视频| 成人av高清在线| 蜜桃免费网站一区二区三区| 亚洲欧美另类久久久精品2019| 欧美电影免费观看高清完整版在线| 菠萝蜜视频在线观看一区| 日本一区中文字幕| 亚洲一区二区三区在线播放 | 色综合咪咪久久| 高清国产一区二区| 老鸭窝一区二区久久精品| 亚洲一区二区精品久久av| 中文字幕av一区二区三区免费看| 日韩你懂的在线播放| 欧美精品日韩综合在线| 91麻豆蜜桃一区二区三区| 国产一区在线观看视频| 免费高清视频精品| 人人爽香蕉精品| 日韩国产成人精品| 日日欢夜夜爽一区| 日韩精品久久理论片| 首页国产欧美久久| 亚洲国产精品综合小说图片区| 亚洲欧美日韩国产综合| 国产精品色噜噜| 17c精品麻豆一区二区免费| 中文字幕制服丝袜成人av| 国产婷婷一区二区| 国产欧美精品在线观看| 欧美国产日韩a欧美在线观看| 国产欧美一区二区在线| 国产精品理伦片| 亚洲裸体xxx| 一区二区三区**美女毛片| 亚洲精品视频在线| 亚洲一区二区视频在线| 天天影视色香欲综合网老头| 午夜视黄欧洲亚洲| 久久综合综合久久综合| 国产精品综合视频| 成人性生交大合| 91蝌蚪国产九色| 欧美日韩一级片在线观看| 在线播放亚洲一区| 26uuu另类欧美| 国产精品人成在线观看免费| 亚洲欧美激情一区二区| 裸体歌舞表演一区二区| 久久黄色级2电影| 国产69精品久久久久777| 97se亚洲国产综合自在线观| 欧美午夜不卡视频| 久久综合九色综合97婷婷女人| 中文字幕巨乱亚洲| 亚洲一级二级三级| 激情成人午夜视频| 色婷婷亚洲综合| 精品国产乱码91久久久久久网站| 欧美激情一区不卡| 天天射综合影视| 粉嫩av一区二区三区| 欧美日韩极品在线观看一区| 久久久高清一区二区三区| 亚洲一区二区三区四区在线观看 | 一区二区三区四区av| 午夜精品久久久久久| 国产福利91精品一区二区三区| 欧美色电影在线| 欧美高清在线一区| 日本在线不卡视频| 色婷婷综合久久| 精品久久久久一区| 亚洲成人中文在线| 一道本成人在线| 久久久久久亚洲综合影院红桃| 亚洲一区中文日韩|