亚洲欧美第一页_禁久久精品乱码_粉嫩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| 国产乱对白刺激视频不卡| 51精品久久久久久久蜜臀| 亚洲黄色小视频| 成人午夜在线播放| 久久婷婷一区二区三区| 五月天网站亚洲| 在线观看网站黄不卡| 亚洲色图制服丝袜| 丁香婷婷深情五月亚洲| 精品成人一区二区三区四区| 亚洲成人黄色影院| 在线精品视频一区二区三四| 国产精品青草综合久久久久99| 美女国产一区二区| 日韩视频免费观看高清完整版在线观看 | 一区2区3区在线看| 国产成人亚洲综合a∨婷婷 | 欧美国产在线观看| 免费不卡在线观看| 日韩视频一区二区三区在线播放 | 亚洲乱码国产乱码精品精小说 | 欧美日韩国产一级二级| 亚洲国产成人高清精品| 欧美喷潮久久久xxxxx| 一区二区三区四区国产精品| 99久久综合国产精品| 国产精品乱子久久久久| www.色综合.com| 国产精品人妖ts系列视频| 成人永久看片免费视频天堂| 国产欧美精品区一区二区三区| 国产盗摄女厕一区二区三区| 久久一夜天堂av一区二区三区| 经典三级在线一区| 中文字幕二三区不卡| www.在线欧美| 亚洲自拍偷拍综合| 91精品综合久久久久久| 精品一区二区三区免费视频| 国产午夜精品久久久久久久| www.久久久久久久久| 亚洲美女在线国产| 欧美久久久久久蜜桃| 久久激情五月婷婷| 日本一二三不卡| 色欧美片视频在线观看在线视频| 亚洲成人av免费| 精品成人免费观看| 91农村精品一区二区在线| 亚洲图片欧美一区| 久久婷婷成人综合色| 色呦呦一区二区三区| 日韩av在线播放中文字幕| 久久久不卡影院| 欧洲人成人精品| 精品亚洲porn| 亚洲与欧洲av电影| 亚洲精品成人在线| 日韩久久久精品| 99精品国产热久久91蜜凸| 日韩电影网1区2区| 中文av一区二区| 91精品国产一区二区三区蜜臀| 国产成人午夜视频| 亚洲成a人v欧美综合天堂下载 | 成人一区二区三区中文字幕| 亚洲高清免费观看高清完整版在线观看 | 久久亚洲一级片| 色哟哟一区二区在线观看| 美国欧美日韩国产在线播放| 国产精品少妇自拍| xfplay精品久久| 欧美性猛交xxxx黑人交| 风间由美一区二区三区在线观看 | 精品国产乱码久久久久久久 | 成人精品视频.| 日韩中文字幕亚洲一区二区va在线| 国产欧美日韩在线| 日韩欧美一区二区久久婷婷| 91黄色免费网站| 成人免费福利片| 国产一区二三区| 日韩电影在线一区二区| 亚洲男人的天堂在线观看| 久久久久久久网| 91精品国产免费| 欧美色男人天堂| 91久久久免费一区二区| 99久久er热在这里只有精品15 | 中日韩av电影| 精品国产三级a在线观看| 欧美三级三级三级爽爽爽| 懂色av中文一区二区三区| 国产一区二区三区美女| 免费不卡在线视频| 日本在线不卡一区| 日韩成人一区二区三区在线观看| 亚洲一本大道在线| 中文字幕一区二区三区av| 国产欧美在线观看一区| 欧美不卡一区二区三区| 日韩午夜三级在线| 日韩精品一区二区三区中文精品| 91精品午夜视频| 欧美精品三级日韩久久| 欧美日韩成人一区| 欧美日韩国产精选| 911精品国产一区二区在线| 欧美精品高清视频| 欧美一区二区三区在线看| 欧美一区二区三区日韩| 日韩欧美一级精品久久| 日韩精品一区二| 国产校园另类小说区| 中文字幕精品—区二区四季| 国产欧美日韩在线观看| 自拍偷拍亚洲激情| 亚洲视频一区在线观看| 一区二区激情视频| 亚洲成人久久影院| 99re成人精品视频| 欧美又粗又大又爽| 欧美男男青年gay1069videost| 欧美日韩三级视频| 精品日韩成人av| 中文字幕精品综合| 亚洲国产精品人人做人人爽| 日韩不卡一区二区三区| 国产一区久久久| 色网综合在线观看| 91精品国产高清一区二区三区| 欧美成人官网二区| 国产精品美女www爽爽爽| 一区二区三区在线观看视频| 日本欧美加勒比视频| 国产99精品视频| 欧美最猛性xxxxx直播| 欧美一区二区精品| 欧美激情一区二区三区四区| 亚洲色图视频网| 另类成人小视频在线| 不卡欧美aaaaa| 欧美午夜精品久久久久久孕妇| 精品国内二区三区| 亚洲手机成人高清视频| 免费观看一级欧美片| 成人激情动漫在线观看| 欧美精品在线一区二区三区| 亚洲国产精品t66y| 天堂成人国产精品一区| 成人午夜av在线| 欧美精品三级在线观看| 亚洲欧洲国产日本综合| 蜜芽一区二区三区| 色婷婷激情综合| 久久免费电影网| 午夜电影久久久| 成人av先锋影音| 日韩一区二区精品| 亚洲制服丝袜av| 国产成人亚洲综合a∨婷婷图片| 欧美日韩精品一区二区三区四区 | 日韩精品在线网站| 一卡二卡三卡日韩欧美| 粉嫩aⅴ一区二区三区四区五区| 在线成人av影院| 亚洲激情综合网| 成人午夜视频在线| 久久综合99re88久久爱| 日韩av一区二区三区四区| 在线视频中文字幕一区二区| 国产精品无圣光一区二区| 美女一区二区视频| 4438x成人网最大色成网站| 亚洲品质自拍视频| 99热国产精品| 欧美国产精品久久| 国产精品一区二区在线观看不卡 | 狠狠色狠狠色综合系列| 欧美久久一区二区| 亚洲综合精品久久| 色乱码一区二区三区88| 国产精品久久久久影院色老大| 国产精品资源网站| 国产亚洲精品福利| 国产乱码精品1区2区3区| 久久综合一区二区| 黑人巨大精品欧美一区| 欧美不卡视频一区| 韩国女主播成人在线| 久久久久久久久伊人| 国产69精品久久777的优势|