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

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

?? elmultiboxtag.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * $Id: ELMultiboxTag.java 373801 2006-01-31 12:18:48Z niallp $ 
 *
 * Copyright 1999-2006 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.MultiboxTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Tag for input fields of type "checkbox".  This differs from CheckboxTag
 * because it assumes that the underlying property is an array getter (of any
 * supported primitive type, or String), and the checkbox is initialized to
 * "checked" if the value listed for the "value" attribute is present in the
 * values returned by the property getter.
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.html.MultiboxTag</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: 373801 $
 */
public class ELMultiboxTag extends MultiboxTag {

    /**
     * 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 "errorKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String errorKeyExpr;
    /**
     * Instance variable mapped to "errorStyle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String errorStyleExpr;
    /**
     * Instance variable mapped to "errorStyleClass" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String errorStyleClassExpr;
    /**
     * Instance variable mapped to "errorStyleId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String errorStyleIdExpr;
    /**
     * Instance variable mapped to "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String nameExpr;
    /**
     * 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 "errorKey" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getErrorKeyExpr() { return (errorKeyExpr); }
    /**
     * Getter method for "errorStyle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getErrorStyleExpr() { return (errorStyleExpr); }
    /**
     * Getter method for "errorStyleClass" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getErrorStyleClassExpr() { return (errorStyleClassExpr); }
    /**
     * Getter method for "errorStyleId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getErrorStyleIdExpr() { return (errorStyleIdExpr); }
    /**
     * Getter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNameExpr() { return (nameExpr); }
    /**
     * 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); }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲无线码一区二区三区| 日精品一区二区三区| 精品福利在线导航| 欧美精品一卡两卡| 色av综合在线| 99九九99九九九视频精品| 日韩中文字幕麻豆| 一区二区三区欧美| 亚洲人123区| 中文字幕一区二区三区四区不卡| 久久精品人人做| 欧美理论片在线| 欧美日韩综合一区| 在线精品国精品国产尤物884a| 99久久伊人久久99| 不卡视频在线看| 国产在线不卡一区| 久久av资源站| 九一久久久久久| 精品综合免费视频观看| 久久丁香综合五月国产三级网站| 丝瓜av网站精品一区二区| 五月天国产精品| 视频一区二区国产| 日韩黄色一级片| 免费成人小视频| 日日夜夜精品视频天天综合网| 亚洲国产精品久久人人爱蜜臀| 亚洲一区二区三区在线| 亚洲国产成人va在线观看天堂| 亚洲精品精品亚洲| 亚洲国产精品久久久久婷婷884 | 欧美日韩免费高清一区色橹橹| 在线观看91视频| 色呦呦日韩精品| 在线免费精品视频| 欧美日韩免费在线视频| 日韩一区二区三区高清免费看看| 日韩欧美二区三区| 久久在线观看免费| 国产精品网站在线观看| 亚洲天堂福利av| 亚洲国产日韩综合久久精品| 日韩av在线发布| 国产乱人伦偷精品视频免下载| 丁香亚洲综合激情啪啪综合| 白白色 亚洲乱淫| 91猫先生在线| 91麻豆精品国产91久久久久| 精品欧美乱码久久久久久| 精品国产青草久久久久福利| 久久久久国产一区二区三区四区| 国产女人aaa级久久久级 | 欧美日本韩国一区| 欧美成人免费网站| 中文字幕第一页久久| 国产精品欧美综合在线| 亚洲国产美国国产综合一区二区| 久久黄色级2电影| 成人性生交大片免费看在线播放| 在线一区二区三区四区| 日韩精品一区二区三区视频播放| 国产拍欧美日韩视频二区| 亚洲欧洲中文日韩久久av乱码| 亚洲精品第1页| 另类综合日韩欧美亚洲| 99久久亚洲一区二区三区青草| 色综合一区二区| 精品久久久久香蕉网| 亚洲色图视频免费播放| 久久se这里有精品| 色婷婷精品久久二区二区蜜臀av | 成人免费高清在线| 欧美一区二区三区男人的天堂| 欧美国产精品一区| 亚洲观看高清完整版在线观看| 黑人精品欧美一区二区蜜桃| 欧美一区二区三区在线视频| 亚洲精品成人天堂一二三| 丰满放荡岳乱妇91ww| 久久久久久久久久看片| 轻轻草成人在线| 欧美欧美午夜aⅴ在线观看| 亚洲人123区| 99久久久免费精品国产一区二区| 久久久久久久久久久电影| 日本在线不卡一区| 欧美日韩一区三区| 亚洲精品一二三四区| 91亚洲精品久久久蜜桃| 国产精品麻豆99久久久久久| 国产精品一区二区在线观看不卡 | 欧美午夜精品一区| 亚洲丝袜精品丝袜在线| 成人黄色小视频在线观看| 久久久久久久久久久久电影 | 成人爱爱电影网址| 国产午夜亚洲精品理论片色戒| 久久国产综合精品| 欧美一区二区私人影院日本| 强制捆绑调教一区二区| 欧美一二三四区在线| 青娱乐精品在线视频| 日韩精品一区二区三区四区| 蜜臀av一区二区在线免费观看| 7777精品伊人久久久大香线蕉超级流畅| 亚洲欧美激情一区二区| 91小视频免费看| 一区二区三区美女视频| 在线一区二区视频| 亚洲第四色夜色| 欧美日韩综合在线免费观看| 五月激情综合色| 欧美一区三区四区| 日本亚洲天堂网| 日韩一级欧美一级| 国产美女主播视频一区| 亚洲国产激情av| 色综合中文字幕| 亚洲成av人片| 欧美一区二区国产| 狠狠狠色丁香婷婷综合久久五月| 久久久激情视频| 成人av在线一区二区三区| 亚洲女人的天堂| 欧美视频自拍偷拍| 免费久久精品视频| 国产三级一区二区三区| 91在线高清观看| 亚洲国产成人91porn| 日韩欧美二区三区| 成人三级伦理片| 亚洲图片欧美综合| 精品日韩在线观看| 99久久亚洲一区二区三区青草| 亚洲一区免费在线观看| 欧美成人vps| 不卡视频免费播放| 亚洲午夜久久久久中文字幕久| 91精品国产麻豆国产自产在线 | 日韩一区二区视频| 国产精品一区专区| 亚洲一区二区不卡免费| 日韩精品在线一区二区| 成人午夜激情在线| 亚洲大片在线观看| 久久久久9999亚洲精品| 91福利小视频| 韩国一区二区在线观看| 亚洲人成在线观看一区二区| 欧美二区三区91| 成人开心网精品视频| 三级亚洲高清视频| 国产精品对白交换视频 | 国产精品白丝av| ㊣最新国产の精品bt伙计久久| 欧美丰满少妇xxxbbb| 成人91在线观看| 免费日韩伦理电影| 亚洲美女区一区| 久久一区二区三区四区| 在线免费一区三区| 国产成人精品免费网站| 亚洲大片免费看| 国产精品久久久久久久久晋中| 69久久99精品久久久久婷婷| 成人avav影音| 免费在线看一区| 一区二区在线电影| 国产日韩精品视频一区| 精品视频在线免费看| 成人18视频在线播放| 韩国av一区二区| 五月婷婷综合激情| 亚洲视频一区二区在线观看| 久久九九全国免费| 日韩午夜小视频| 欧美亚洲精品一区| 成人手机电影网| 国产麻豆成人传媒免费观看| 亚洲成人黄色影院| 一区二区三区影院| 中文字幕永久在线不卡| 久久久久久免费毛片精品| 91精品国产免费| 欧美日韩在线不卡| 欧美在线短视频| 91麻豆6部合集magnet| 成人性色生活片| 国产精品 日产精品 欧美精品| 美腿丝袜亚洲一区| 日韩黄色免费网站| 亚洲成人免费视| 一级日本不卡的影视| 亚洲特级片在线| 国产精品美女www爽爽爽| 国产色产综合产在线视频| 久久日韩粉嫩一区二区三区| 精品国产91乱码一区二区三区| 日韩精品在线一区|