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

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

?? elframetag.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * $Id: ELFrameTag.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.FrameTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;

/**
 * Generate an HTML <code>&lt;frame&gt;</code> tag with similar capabilities as
 * those the <code>&lt;html:link&gt;</code> tag provides for hyperlink
 * elements.  The <code>src</code> element is rendered using the same technique
 * that {@link org.apache.struts.taglib.html.LinkTag LinkTag} uses to render
 * the <code>href</code> attribute of a hyperlink.  Additionally, the HTML 4.0
 * frame tag attributes <code>noresize</code>, <code>scrolling</code>,
 * <code>marginheight</code>, <code>marginwidth</code>,
 * <code>frameborder</code>, and <code>longdesc</code> are supported.  The
 * frame <code>name</code> attribute is rendered based on the
 * <code>frameName</code> property.
 *<p>
 * Note that the value of <code>longdesc</code> is intended to be a URI, but
 * currently no rewriting is supported.  The attribute is set directly from
 * the property value.
 *<p>
 * This class is a subclass of the class
 * <code>org.apache.struts.taglib.html.FrameTag</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 ELFrameTag extends FrameTag {

    /**
     * Instance variable mapped to "action" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String actionExpr;
    /**
     * Instance variable mapped to "module" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String moduleExpr;
    /**
     * Instance variable mapped to "anchor" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String anchorExpr;
    /**
     * Instance variable mapped to "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String bundleExpr;
    /**
     * Instance variable mapped to "forward" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String forwardExpr;
    /**
     * Instance variable mapped to "frameborder" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String frameborderExpr;
    /**
     * Instance variable mapped to "frameName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String frameNameExpr;
    /**
     * Instance variable mapped to "href" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String hrefExpr;
    /**
     * Instance variable mapped to "longdesc" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String longdescExpr;
    /**
     * Instance variable mapped to "marginheight" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String marginheightExpr;
    /**
     * Instance variable mapped to "marginwidth" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String marginwidthExpr;
    /**
     * Instance variable mapped to "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String nameExpr;
    /**
     * Instance variable mapped to "noresize" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String noresizeExpr;
    /**
     * Instance variable mapped to "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String pageExpr;
    /**
     * Instance variable mapped to "paramId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramIdExpr;
    /**
     * Instance variable mapped to "paramName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramNameExpr;
    /**
     * Instance variable mapped to "paramProperty" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramPropertyExpr;
    /**
     * Instance variable mapped to "paramScope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String paramScopeExpr;
    /**
     * 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 "scrolling" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String scrollingExpr;
    /**
     * 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 "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 "transaction" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    private String transactionExpr;

    /**
     * Getter method for "action" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getActionExpr() { return (actionExpr); }
    /**
     * Getter method for "module" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getModuleExpr() { return (moduleExpr); }
    /**
     * Getter method for "anchor" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getAnchorExpr() { return (anchorExpr); }
    /**
     * Getter method for "bundle" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getBundleExpr() { return (bundleExpr); }
    /**
     * Getter method for "forward" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getForwardExpr() { return (forwardExpr); }
    /**
     * Getter method for "frameborder" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getFrameborderExpr() { return (frameborderExpr); }
    /**
     * Getter method for "frameName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getFrameNameExpr() { return (frameNameExpr); }
    /**
     * Getter method for "href" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getHrefExpr() { return (hrefExpr); }
    /**
     * Getter method for "longdesc" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getLongdescExpr() { return (longdescExpr); }
    /**
     * Getter method for "marginheight" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getMarginheightExpr() { return (marginheightExpr); }
    /**
     * Getter method for "marginwidth" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getMarginwidthExpr() { return (marginwidthExpr); }
    /**
     * Getter method for "name" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNameExpr() { return (nameExpr); }
    /**
     * Getter method for "noresize" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getNoresizeExpr() { return (noresizeExpr); }
    /**
     * Getter method for "page" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getPageExpr() { return (pageExpr); }
    /**
     * Getter method for "paramId" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamIdExpr() { return (paramIdExpr); }
    /**
     * Getter method for "paramName" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamNameExpr() { return (paramNameExpr); }
    /**
     * Getter method for "paramProperty" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamPropertyExpr() { return (paramPropertyExpr); }
    /**
     * Getter method for "paramScope" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getParamScopeExpr() { return (paramScopeExpr); }
    /**
     * 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 "scrolling" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getScrollingExpr() { return (scrollingExpr); }
    /**
     * 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 "title" tag attribute.
     * (Mapping set in associated BeanInfo class.)
     */
    public String getTitleExpr() { return (titleExpr); }
    /**

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久亚洲一区二区三区青草 | 在线观看亚洲精品| 成人免费在线视频观看| 一本一本久久a久久精品综合麻豆| 亚洲手机成人高清视频| 色婷婷综合激情| 亚洲成人手机在线| 欧美不卡视频一区| 国产91高潮流白浆在线麻豆| 18欧美亚洲精品| 欧美日韩中文字幕精品| 玖玖九九国产精品| 久久精品视频免费观看| 91亚洲精品一区二区乱码| 亚洲午夜三级在线| 精品国产乱码久久| k8久久久一区二区三区| 亚洲一二三四久久| 91精品国产日韩91久久久久久| 极品少妇xxxx精品少妇偷拍| 中文字幕欧美激情| 欧美色图一区二区三区| 看电视剧不卡顿的网站| 最新国产成人在线观看| 欧美一级片在线| 北条麻妃一区二区三区| 午夜欧美2019年伦理| www亚洲一区| 欧美无砖砖区免费| 国产一区二区三区香蕉| 亚洲激情欧美激情| 精品久久久久久久久久久久久久久 | 国产欧美日韩激情| 色老汉av一区二区三区| 激情深爱一区二区| 亚洲小说欧美激情另类| 国产午夜精品一区二区三区视频| 色婷婷av一区| 国产成人午夜视频| 日本vs亚洲vs韩国一区三区 | 91国偷自产一区二区三区成为亚洲经典| 午夜一区二区三区视频| 国产精品青草综合久久久久99| 欧美一区午夜视频在线观看| 91看片淫黄大片一级| 国产制服丝袜一区| 婷婷久久综合九色综合绿巨人| 欧美国产精品一区| 日韩精品一区二区三区三区免费| 在线免费一区三区| 成人av网站免费观看| 黑人精品欧美一区二区蜜桃 | 日韩精品中文字幕在线不卡尤物 | 91日韩在线专区| 国产一区二区在线看| 亚洲chinese男男1069| 亚洲日本成人在线观看| 国产午夜精品一区二区三区视频| 91精品黄色片免费大全| 在线观看免费视频综合| 91视视频在线观看入口直接观看www| 久久99热这里只有精品| 日本成人在线不卡视频| 五月婷婷综合激情| 亚洲一区二区欧美激情| 亚洲男人的天堂网| 亚洲欧美在线高清| 国产精品免费看片| 国产精品久久毛片av大全日韩| 久久婷婷久久一区二区三区| 日韩欧美在线1卡| 欧美一区二区三区免费视频| 91精品国产综合久久国产大片| 欧美疯狂性受xxxxx喷水图片| 欧美日韩精品综合在线| 欧美人xxxx| 欧美日韩国产一二三| 欧美日韩免费一区二区三区视频| 91福利视频网站| 欧美日韩你懂的| 91精品国产综合久久福利软件| 91精品国产综合久久久蜜臀粉嫩| 欧美肥胖老妇做爰| 欧美一区二区三级| 精品美女在线播放| 国产亚洲一区二区三区| 国产精品热久久久久夜色精品三区| 久久久国产午夜精品| 欧美激情自拍偷拍| 中文字幕永久在线不卡| 自拍偷拍国产精品| 亚洲一区二区视频| 欧美aaa在线| 国产美女一区二区| av不卡在线播放| 在线观看国产91| 69av一区二区三区| 精品剧情在线观看| 久久久久久夜精品精品免费| 国产欧美日韩不卡免费| 亚洲三级理论片| 性做久久久久久| 国内成人精品2018免费看| 国产成人精品aa毛片| 99久久99久久久精品齐齐| 欧美在线不卡一区| 日韩精品在线一区| 自拍偷在线精品自拍偷无码专区| 亚洲一区二区三区四区五区中文 | 偷窥少妇高潮呻吟av久久免费| 日av在线不卡| 成人精品国产免费网站| 欧美特级限制片免费在线观看| 日韩精品一区二区三区老鸭窝| 国产精品久久久久婷婷| 亚洲国产成人tv| 国产呦精品一区二区三区网站| 99精品欧美一区二区三区小说| 欧美精品vⅰdeose4hd| 国产日韩精品一区二区浪潮av| 亚洲精品综合在线| 精品一区二区久久| 91福利视频在线| 久久久久久夜精品精品免费| 亚洲一区二区三区视频在线| 国产在线播放一区二区三区| 欧洲一区在线电影| 久久精品视频一区二区三区| 亚洲五月六月丁香激情| 国产a级毛片一区| 欧美精品xxxxbbbb| 亚洲美女少妇撒尿| 国产精品18久久久久久久久| 在线不卡中文字幕| 日韩毛片一二三区| 国产精品一区二区你懂的| 欧美日韩国产色站一区二区三区| 国产精品美女久久久久久久网站| 久久er精品视频| 欧美一区二区三区影视| 一区二区三区在线观看国产| 成人午夜av影视| 欧美精品一区二区三区蜜桃视频| 亚洲大片精品永久免费| 91免费版在线| 国产色产综合产在线视频| 奇米色一区二区| 欧美日韩高清一区二区不卡 | 日本强好片久久久久久aaa| 成人免费看视频| 久久久久一区二区三区四区| 免费观看在线综合| 欧美日韩精品免费| 亚洲另类在线视频| 91免费视频观看| 中文字幕一区二区5566日韩| 成人永久aaa| 国产无一区二区| 国产精品911| 久久久久久久久岛国免费| 麻豆精品视频在线观看免费| 日韩免费成人网| 极品少妇xxxx精品少妇偷拍| 日韩亚洲欧美高清| 免费黄网站欧美| 日韩精品一区二区三区三区免费| 美女高潮久久久| 久久综合色之久久综合| 国产呦萝稀缺另类资源| 国产亚洲精久久久久久| 国产不卡在线视频| 亚洲国产精品二十页| av亚洲精华国产精华| 亚洲人一二三区| 欧美在线影院一区二区| 亚洲国产另类av| 日韩一级片网站| 国内精品不卡在线| 国产精品美女久久久久久久久 | 色欧美日韩亚洲| 亚洲精品va在线观看| 欧美日韩在线亚洲一区蜜芽| 首页亚洲欧美制服丝腿| 日韩一区二区精品在线观看| 国产麻豆视频精品| 亚洲色图视频免费播放| 欧美日韩在线播放一区| 美女视频第一区二区三区免费观看网站| 日韩欧美一级二级| 国产成人精品一区二| 亚洲欧美日韩国产成人精品影院| 欧美在线免费观看亚洲| 奇米影视在线99精品| 久久久久久久久久久黄色| 不卡av电影在线播放| 亚洲一区二区三区不卡国产欧美| 日韩欧美久久久| 99国产精品久久久| 免费xxxx性欧美18vr| 国产三级一区二区|