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

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

?? eliteratetag.java

?? struts的源代碼
?? JAVA
字號:
/*
 * $Id: ELIterateTag.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.logic;

import org.apache.struts.taglib.logic.IterateTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Custom tag that iterates the elements of a collection, which can be
 * either an attribute or the property of an attribute.  The collection
 * can be any of the following:  an array of objects, an Enumeration,
 * an Iterator, a Collection (which includes Lists, Sets and Vectors),
 * or a Map (which includes Hashtables) whose elements will be iterated over.
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.logic.IterateTag</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 ELIterateTag extends IterateTag {

    /**
     * Instance variable mapped to "collection" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String collectionExpr;
    /**
     * Instance variable mapped to "id" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String idExpr;
    /**
     * Instance variable mapped to "indexId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String indexIdExpr;
    /**
     * Instance variable mapped to "length" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String lengthExpr;
    /**
     * Instance variable mapped to "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String nameExpr;
    /**
     * Instance variable mapped to "offset" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String offsetExpr;
    /**
     * Instance variable mapped to "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String propertyExpr;
    /**
     * Instance variable mapped to "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String scopeExpr;
    /**
     * Instance variable mapped to "type" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String typeExpr;

    /**
     * Getter method for "collection" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getCollectionExpr() { return (collectionExpr); }
    /**
     * Getter method for "id" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getIdExpr() { return (idExpr); }
    /**
     * Getter method for "indexId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getIndexIdExpr() { return (indexIdExpr); }
    /**
     * Getter method for "length" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getLengthExpr() { return (lengthExpr); }
    /**
     * Getter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNameExpr() { return (nameExpr); }
    /**
     * Getter method for "offset" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getOffsetExpr() { return (offsetExpr); }
    /**
     * Getter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPropertyExpr() { return (propertyExpr); }
    /**
     * Getter method for "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getScopeExpr() { return (scopeExpr); }
    /**
     * Getter method for "type" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTypeExpr() { return (typeExpr); }

    /**
     * Setter method for "collection" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setCollectionExpr(String collectionExpr) { this.collectionExpr = collectionExpr; }
    /**
     * Setter method for "id" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setIdExpr(String idExpr) { this.idExpr = idExpr; }
    /**
     * Setter method for "indexId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setIndexIdExpr(String indexIdExpr) { this.indexIdExpr = indexIdExpr; }
    /**
     * Setter method for "length" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setLengthExpr(String lengthExpr) { this.lengthExpr = lengthExpr; }
    /**
     * Setter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setNameExpr(String nameExpr) { this.nameExpr = nameExpr; }
    /**
     * Setter method for "offset" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setOffsetExpr(String offsetExpr) { this.offsetExpr = offsetExpr; }
    /**
     * Setter method for "property" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setPropertyExpr(String propertyExpr) { this.propertyExpr = propertyExpr; }
    /**
     * Setter method for "scope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setScopeExpr(String scopeExpr) { this.scopeExpr = scopeExpr; }
    /**
     * Setter method for "type" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public void setTypeExpr(String typeExpr) { this.typeExpr = typeExpr; }

    /**
     * Releases state of custom tag so this instance can be reused.
     */
    public void release()
    {
        super.release();
        setCollectionExpr(null);
        setIdExpr(null);
        setIndexIdExpr(null);
        setLengthExpr(null);
        setNameExpr(null);
        setOffsetExpr(null);
        setPropertyExpr(null);
        setScopeExpr(null);
        setTypeExpr(null);
    }

    /**
     * Process the start tag.
     *
     * @exception JspException if a JSP exception has occurred
     */
    public int doStartTag() throws JspException {
        evaluateExpressions();
        return(super.doStartTag());
    }

    /**
     * Processes all attribute values which use the JSTL expression evaluation
     * engine to determine their values.
     *
     * @exception JspException if a JSP exception has occurred
     */
    private void evaluateExpressions() throws JspException {
        String string   = null;
        Object object   = null;

        if ((object = EvalHelper.eval("collection", getCollectionExpr(),
                                      this, pageContext)) != null)
            setCollection(object);

        if ((string = EvalHelper.evalString("id", getIdExpr(),
                                            this, pageContext)) != null)
            setId(string);

        if ((string = EvalHelper.evalString("indexId", getIndexIdExpr(),
                                            this, pageContext)) != null)
            setIndexId(string);

        if ((string = EvalHelper.evalString("length", getLengthExpr(),
                                            this, pageContext)) != null)
            setLength(string);

        if ((string = EvalHelper.evalString("name", getNameExpr(),
                                            this, pageContext)) != null)
            setName(string);

        if ((string = EvalHelper.evalString("offset", getOffsetExpr(),
                                            this, pageContext)) != null)
            setOffset(string);

        if ((string = EvalHelper.evalString("property", getPropertyExpr(),
                                            this, pageContext)) != null)
            setProperty(string);

        if ((string = EvalHelper.evalString("scope", getScopeExpr(),
                                            this, pageContext)) != null)
            setScope(string);

        if ((string = EvalHelper.evalString("type", getTypeExpr(),
                                            this, pageContext)) != null)
            setType(string);
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美国产小视频| 欧美一区二区三区免费| 国产一区二区三区最好精华液| 亚洲午夜av在线| 日韩av二区在线播放| 青青草成人在线观看| 日日噜噜夜夜狠狠视频欧美人| 天堂久久一区二区三区| 青青青爽久久午夜综合久久午夜| 日日摸夜夜添夜夜添精品视频 | 亚洲宅男天堂在线观看无病毒| 中文字幕五月欧美| 一区二区三区视频在线看| 樱花影视一区二区| 亚洲成av人片在www色猫咪| 日韩国产在线一| 国产在线不卡一区| 成人动漫中文字幕| 欧美日韩久久一区| 久久无码av三级| 亚洲精品成人悠悠色影视| 亚洲二区在线视频| 国产毛片精品国产一区二区三区| 成人国产精品免费| 欧美理论在线播放| 国产欧美日韩在线观看| 亚洲一区二区三区自拍| 国产一区二区视频在线| 91免费版在线| 日韩欧美一级在线播放| 国产精品成人在线观看| 日韩国产欧美一区二区三区| 国产精品自拍在线| 欧美在线观看你懂的| 欧美变态凌虐bdsm| 亚洲猫色日本管| 激情国产一区二区| 欧美亚洲一区三区| 久久久99精品久久| 午夜成人免费视频| caoporm超碰国产精品| 欧美一区二区成人| 一区二区三区在线播| 国产麻豆日韩欧美久久| 欧美日韩成人在线| 亚洲欧洲韩国日本视频| 精品综合久久久久久8888| 91国内精品野花午夜精品| 久久午夜电影网| 日本美女视频一区二区| 91久久线看在观草草青青| 久久久久国产精品厨房| 日本不卡高清视频| 日本高清不卡在线观看| 国产精品久久久久aaaa樱花| 黑人精品欧美一区二区蜜桃| 欧美精品乱码久久久久久| 亚洲三级免费观看| 高清成人免费视频| 久久亚洲春色中文字幕久久久| 日韩和欧美的一区| 欧美日韩欧美一区二区| 亚洲综合在线视频| 97精品视频在线观看自产线路二| 久久色.com| 美国精品在线观看| 日韩丝袜美女视频| 日韩av网站免费在线| 91精品欧美福利在线观看| 亚洲一区二区三区在线看| 日本久久一区二区三区| 亚洲精品精品亚洲| 91丝袜高跟美女视频| 中文字幕日韩欧美一区二区三区| 成人性生交大片免费看中文网站| 久久精品免视看| 成人性色生活片免费看爆迷你毛片| 久久久久久久久久美女| 国产福利精品一区| 中文字幕制服丝袜成人av| 成人免费va视频| 亚洲日本一区二区| 在线观看国产91| 日韩专区一卡二卡| 精品成a人在线观看| 国产在线看一区| 中日韩免费视频中文字幕| 99re视频精品| 亚洲动漫第一页| 日韩精品最新网址| 成人免费看黄yyy456| 亚洲天堂免费看| 欧美精品三级在线观看| 老司机精品视频导航| 国产欧美日产一区| 色天天综合久久久久综合片| 日韩高清欧美激情| 日本一区二区三区国色天香 | 美女免费视频一区二区| 日韩欧美你懂的| 国产成人av电影免费在线观看| 亚洲日本一区二区三区| 777奇米四色成人影色区| 国产在线不卡一区| 一区二区国产视频| 精品成人a区在线观看| 91丨porny丨最新| 日韩av高清在线观看| 国产精品高潮呻吟| 91精品啪在线观看国产60岁| 高清不卡一区二区在线| 久久久一区二区| 欧美综合在线视频| 粉嫩aⅴ一区二区三区四区| 亚洲在线中文字幕| 欧美国产精品v| 欧美一区二区在线免费观看| 成人av资源在线| 久久99精品久久久久久久久久久久 | 国产婷婷一区二区| 欧美性videosxxxxx| 国产成人一区二区精品非洲| 亚洲黄色在线视频| 久久精品欧美一区二区三区麻豆| 欧美性感一区二区三区| 成人免费毛片aaaaa**| 美美哒免费高清在线观看视频一区二区| 国产精品久久久久久亚洲伦| 日韩免费电影网站| 777久久久精品| 91黄色免费看| 不卡的av网站| 国产盗摄女厕一区二区三区| 免费高清在线一区| 亚洲一区在线观看视频| ●精品国产综合乱码久久久久| 欧美精品一区二区久久婷婷 | 免费成人小视频| 一区二区三区精品久久久| 中文字幕亚洲区| 国产精品福利一区二区| 久久久夜色精品亚洲| 精品国产青草久久久久福利| 欧美精品在线观看一区二区| 欧美性一级生活| 在线免费av一区| 在线视频国产一区| 欧美色精品天天在线观看视频| 日本乱人伦一区| 欧美电影免费观看高清完整版在线| 色综合久久久久网| 91小视频在线| 91在线无精精品入口| 91麻豆6部合集magnet| 99精品视频中文字幕| 99久久精品国产精品久久| aaa亚洲精品一二三区| 成年人国产精品| 91麻豆免费看| 欧美另类变人与禽xxxxx| 7777精品伊人久久久大香线蕉的| 7777精品伊人久久久大香线蕉超级流畅 | 懂色av一区二区三区蜜臀| 国产福利一区二区三区在线视频| 国产精品影视在线观看| 成人的网站免费观看| 日本韩国精品一区二区在线观看| 欧美视频在线播放| 日韩小视频在线观看专区| 精品久久人人做人人爱| 日本一区二区三区四区| 亚洲免费观看高清在线观看| 亚洲国产精品综合小说图片区| 日韩精品国产精品| 国产最新精品免费| 成人中文字幕在线| 在线精品亚洲一区二区不卡| 欧美日本高清视频在线观看| 久久久久国产精品麻豆ai换脸| 中文字幕亚洲区| 三级在线观看一区二区| 国产高清在线观看免费不卡| 日本精品一区二区三区高清| 精品蜜桃在线看| 亚洲桃色在线一区| 免费日本视频一区| 成人黄色片在线观看| 91麻豆精品国产91久久久使用方法| 久久久久国产精品麻豆ai换脸| 亚洲激情图片一区| 国产伦理精品不卡| 欧美巨大另类极品videosbest | 这里是久久伊人| 亚洲国产精品av| 亚洲aⅴ怡春院| 成人免费看片app下载| 日韩色视频在线观看| 亚洲欧美日韩国产综合在线| 韩国三级中文字幕hd久久精品| 欧美性色综合网|