亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
gogo大胆日本视频一区| 久久99精品久久久久| 国产精品综合二区| 欧美日韩一区久久| 国产精品青草综合久久久久99| 亚洲va国产va欧美va观看| 大胆欧美人体老妇| 欧美大度的电影原声| 亚洲国产中文字幕在线视频综合| 国产成人激情av| 精品国产网站在线观看| 亚洲1区2区3区4区| 色欧美乱欧美15图片| 国产偷国产偷亚洲高清人白洁| 日本成人在线不卡视频| 欧美午夜片在线看| 中文字幕日韩av资源站| 国产成人a级片| 久久久久88色偷偷免费| 久久丁香综合五月国产三级网站| 欧美日韩激情一区| 亚洲一级在线观看| 欧美在线观看一区| 一区二区在线免费观看| 91色porny蝌蚪| 亚洲色欲色欲www| eeuss鲁片一区二区三区在线看| 国产喂奶挤奶一区二区三区| 国内成+人亚洲+欧美+综合在线| 欧美一区二区视频网站| 午夜精品久久久久久久久久久 | 午夜精品爽啪视频| 欧美午夜寂寞影院| 亚洲韩国精品一区| 欧美日韩另类一区| 午夜久久电影网| 欧美日韩aaa| 日本女人一区二区三区| 91精品国产一区二区三区蜜臀 | 中文字幕在线一区免费| 高清日韩电视剧大全免费| 国产亚洲综合色| 国产精品一区二区91| 欧美极品美女视频| 成人手机电影网| 中文字幕一区二区三区色视频| caoporen国产精品视频| 综合电影一区二区三区| 91久久精品一区二区三区| 亚洲国产中文字幕在线视频综合 | 91在线国内视频| 一区二区三区在线看| 欧美亚洲一区三区| 天天色图综合网| 欧美一级免费大片| 九九九精品视频| 欧美极品美女视频| 一本色道久久加勒比精品| 亚洲最新视频在线播放| 777色狠狠一区二区三区| 美腿丝袜一区二区三区| 久久久久久久网| 成人美女视频在线观看18| 亚洲同性gay激情无套| 欧美性一级生活| 日本欧美一区二区| 国产日韩欧美亚洲| 一本久道久久综合中文字幕| 香蕉乱码成人久久天堂爱免费| 欧美电影免费观看高清完整版在| 国产麻豆成人精品| 亚洲视频 欧洲视频| 欧美精品三级在线观看| 精久久久久久久久久久| 中文字幕中文字幕中文字幕亚洲无线| 欧美中文字幕久久| 久久国产欧美日韩精品| 亚洲国产高清aⅴ视频| 色欧美片视频在线观看在线视频| 日欧美一区二区| 久久久国产精品不卡| 日本精品免费观看高清观看| 日本亚洲欧美天堂免费| 亚洲国产精品99久久久久久久久| 日本精品视频一区二区| 久久99在线观看| 亚洲欧美一区二区在线观看| 91精品国产综合久久精品性色| 国产久卡久卡久卡久卡视频精品| 亚洲免费三区一区二区| 欧美大片拔萝卜| 色哟哟欧美精品| 久久成人av少妇免费| 1区2区3区精品视频| 日韩一区二区电影在线| 99久久久精品| 捆绑紧缚一区二区三区视频 | 亚洲精品一区二区三区蜜桃下载| 94-欧美-setu| 久久精品国产网站| 亚洲免费在线播放| 久久亚洲精品国产精品紫薇| 欧美中文字幕一二三区视频| 国产精品91一区二区| 午夜精品久久久久久久| 国产精品理论片在线观看| 日韩欧美色电影| 在线观看视频欧美| 国产福利91精品一区二区三区| 午夜久久电影网| 最新日韩在线视频| 国产亚洲1区2区3区| 欧美一区二区播放| 色屁屁一区二区| 成人18视频在线播放| 精品一区二区免费看| 亚洲6080在线| 亚洲免费在线观看| 国产精品丝袜久久久久久app| 日韩精品一区二区三区在线| 欧美日韩在线直播| 91丝袜高跟美女视频| 国产成人综合在线观看| 久久91精品国产91久久小草| 亚洲线精品一区二区三区八戒| 国产精品欧美一级免费| 久久午夜羞羞影院免费观看| 日韩一区二区三区视频| 欧美性做爰猛烈叫床潮| 91蜜桃网址入口| av欧美精品.com| 国产**成人网毛片九色| 国内精品自线一区二区三区视频| 日本午夜一本久久久综合| 亚洲成人动漫一区| 亚洲综合免费观看高清完整版在线 | 精品一区二区av| 奇米精品一区二区三区在线观看| 亚洲自拍偷拍综合| 亚洲美女屁股眼交| 成人免费在线视频| 国产精品成人免费| 国产精品无圣光一区二区| 国产欧美一区二区精品仙草咪| 26uuu国产电影一区二区| 日韩免费成人网| 日韩一二三区视频| 日韩一二三四区| 日韩欧美一区二区在线视频| 欧美一卡在线观看| 欧美一区二区三区视频| 欧美一区二区播放| 欧美成人艳星乳罩| 精品99999| 国产亚洲精品超碰| 国产精品久久夜| 亚洲视频一区二区免费在线观看| 中文字幕一区二区三区视频 | 精品美女在线播放| 欧美一区午夜视频在线观看| 91精品国产综合久久久久久久 | 欧美专区亚洲专区| 欧美亚洲综合色| 欧美日韩黄色一区二区| 欧美精品九九99久久| 日韩一区二区免费在线观看| 日韩精品专区在线影院观看| 精品国产乱码91久久久久久网站| 337p粉嫩大胆噜噜噜噜噜91av| 国产亚洲短视频| 自拍偷自拍亚洲精品播放| 亚洲视频你懂的| 亚洲狠狠爱一区二区三区| 日韩av一二三| 国产精品一区二区果冻传媒| 成人激情免费网站| 在线视频观看一区| 3d动漫精品啪啪一区二区竹菊 | 欧美色成人综合| 日韩欧美色综合| 国产精品视频免费| 一区二区三区在线高清| 日韩专区在线视频| 久久成人免费网站| 成人永久免费视频| 91极品美女在线| 91精品中文字幕一区二区三区| 久久综合999| 亚洲视频一区二区在线| 天天综合天天做天天综合| 国产在线播放一区| 91美女蜜桃在线| 日韩精品一区二区三区蜜臀| 中文字幕不卡一区| 午夜精品久久一牛影视| 国产成人自拍在线| 欧美视频在线一区| 久久免费看少妇高潮| 一级日本不卡的影视| 久久精品免费看|