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

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

?? formcomponent.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * Copyright 2002-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.struts.faces.component;


import java.util.Map;
import javax.faces.component.UIForm;
import javax.faces.context.FacesContext;
import javax.faces.el.ValueBinding;
import javax.servlet.http.HttpSession;
import org.apache.commons.beanutils.DynaBean;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionServlet;
import org.apache.struts.action.DynaActionFormClass;
import org.apache.struts.config.ActionConfig;
import org.apache.struts.config.FormBeanConfig;
import org.apache.struts.config.ModuleConfig;
import org.apache.struts.util.RequestUtils;


/**
 * <p><strong>FormComponent</strong> is a specialized subclass of
 * <code>javax.faces.component.UIForm</code> that supports automatic
 * creation of form beans in request or session scope.</p>
 *
 * @version $Rev: 54943 $ $Date: 2004-10-17 00:57:37 +0100 (Sun, 17 Oct 2004) $
 */
public class FormComponent extends UIForm {


    // -------------------------------------------------------- Static Variables


    /**
     * <p>The <code>Log</code> instance for this class.</p>
     */
    protected static Log log = LogFactory.getLog(FormComponent.class);


    // ------------------------------------------------------ Instance Variables


    private String action = null;
    private String enctype = null;
    private String focus = null;
    private String focusIndex = null;
    private String onreset = null;
    private String onsubmit = null;
    private String style = null;
    private String styleClass = null;
    private String target = null;


    // ---------------------------------------------------- Component Properties


    /**
     * <p>Return the Struts action path to which this form should be submitted.
     * </p>
     */
    public String getAction() {

        if (this.action != null) {
            return (this.action);
        }
        ValueBinding vb = getValueBinding("action");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the Struts action to which this form should be submitted.</p>
     *
     * @param action The new action path
     */
    public void setAction(String action) {

        this.action = action;

    }


    /**
     * <p>Return the encoding type for this form submit.</p>
     */
    public String getEnctype() {

        if (this.enctype != null) {
            return (this.enctype);
        }
        ValueBinding vb = getValueBinding("enctype");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the encoding type for this form submit.</p>
     *
     * @param enctype The new enctype path
     */
    public void setEnctype(String enctype) {

        this.enctype = enctype;

    }


    /**
     * <p>Return the component family to which this component belongs.</p>
     */
    public String getFamily() {

        return "org.apache.struts.faces.Form";

    }


    /**
     * <p>Return the focus element name.</p>
     */
    public String getFocus() {

        if (this.focus != null) {
            return (this.focus);
        }
        ValueBinding vb = getValueBinding("focus");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the focus element name.</p>
     *
     * @param focus The new focus path
     */
    public void setFocus(String focus) {

        this.focus = focus;

    }


    /**
     * <p>Return the focus element index.</p>
     */
    public String getFocusIndex() {

        if (this.focusIndex != null) {
            return (this.focusIndex);
        }
        ValueBinding vb = getValueBinding("focusIndex");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the focus element index.</p>
     *
     * @param focusIndex The new focusIndex path
     */
    public void setFocusIndex(String focusIndex) {

        this.focusIndex = focusIndex;

    }


    /**
     * <p>Return the JavaScript to execute on form reset.</p>
     */
    public String getOnreset() {

        if (this.onreset != null) {
            return (this.onreset);
        }
        ValueBinding vb = getValueBinding("onreset");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the JavaScript to execute on form reset.</p>
     *
     * @param onreset The new onreset path
     */
    public void setOnreset(String onreset) {

        this.onreset = onreset;

    }


    /**
     * <p>Return the JavaScript to execute on form submit.</p>
     */
    public String getOnsubmit() {

        if (this.onsubmit != null) {
            return (this.onsubmit);
        }
        ValueBinding vb = getValueBinding("onsubmit");
        if (vb != null) {
            return ((String) vb.getValue(getFacesContext()));
        } else {
            return (null);
        }

    }


    /**
     * <p>Set the JavaScript to execute on form submit.</p>
     *
     * @param onsubmit The new onsubmit path
     */
    public void setOnsubmit(String onsubmit) {

        this.onsubmit = onsubmit;

    }


    /**
     * <p>Return the CSS style(s) to be rendered for this component.</p>
     */
    public String getStyle() {

        ValueBinding vb = getValueBinding("style");
        if (vb != null) {
            return (String) vb.getValue(getFacesContext());
        } else {
            return style;
        }

    }


    /**
     * <p>Set the CSS style(s) to be rendered for this component.</p>
     *
     * @param style The new CSS style(s)
     */
    public void setStyle(String style) {

        this.style = style;

    }


    /**
     * <p>Return the CSS style class(es) to be rendered for this component.</p>
     */
    public String getStyleClass() {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜欧美在线一二页| 成人午夜精品在线| 欧美亚洲国产一卡| 一区二区三区在线免费| 成人黄色免费短视频| 久久精品一区二区三区av| 精品一区二区三区日韩| 精品欧美久久久| 狂野欧美性猛交blacked| 日韩美一区二区三区| 美日韩一级片在线观看| 欧美va亚洲va国产综合| 久久精品免费观看| 欧美v日韩v国产v| 国产尤物一区二区在线| 国产偷国产偷亚洲高清人白洁| 国产一区二区日韩精品| 久久久精品影视| 成人av资源在线| 亚洲色图制服诱惑| 欧美三级中文字幕在线观看| 亚洲国产成人高清精品| 欧美男生操女生| 另类小说视频一区二区| 久久久不卡网国产精品一区| 国产成人av资源| 亚洲天堂av老司机| 欧洲av在线精品| 日本免费在线视频不卡一不卡二 | 国产又黄又大久久| 国产欧美一区二区精品忘忧草| 国产成人精品一区二区三区四区| 国产精品色在线| 色综合天天综合狠狠| 亚洲高清在线视频| 日韩片之四级片| 国产凹凸在线观看一区二区| 中文字幕一区二区三区在线不卡| 色综合久久88色综合天天| 亚洲成人动漫精品| 精品国产成人系列| 成人国产精品免费观看视频| 亚洲精品亚洲人成人网在线播放| 欧美日韩国产区一| 国产曰批免费观看久久久| 国产精品夫妻自拍| 制服丝袜av成人在线看| 国产福利一区二区三区在线视频| 亚洲欧美日韩在线不卡| 91麻豆精品国产91久久久使用方法| 国产一区二区女| 伊人婷婷欧美激情| 日韩欧美国产麻豆| www.欧美精品一二区| 日韩中文字幕不卡| 久久精品欧美一区二区三区不卡| 一本久久a久久精品亚洲| 日本欧美在线观看| 中文字幕一区免费在线观看| 91精品一区二区三区久久久久久| 懂色av一区二区在线播放| 亚洲第一福利一区| 日本一区二区三区免费乱视频| 欧美性受极品xxxx喷水| 国产麻豆精品theporn| 亚洲精品国产精华液| 欧美不卡一区二区三区| 色婷婷av久久久久久久| 狠狠色丁香久久婷婷综合_中| 亚洲免费在线电影| 久久夜色精品国产噜噜av | 成人毛片在线观看| 日本亚洲欧美天堂免费| 中文字幕在线观看不卡| 日韩三级视频中文字幕| 91成人免费电影| 福利视频网站一区二区三区| 日韩和欧美的一区| 亚洲精品水蜜桃| 久久久久亚洲蜜桃| 制服丝袜亚洲网站| 日本高清视频一区二区| 国产精品88888| 青青青伊人色综合久久| 亚洲综合无码一区二区| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 国产欧美一区二区精品性色超碰| 欧美日韩1234| 99精品国产91久久久久久| 久久99国产精品尤物| 亚洲成av人片在www色猫咪| 中文字幕中文字幕在线一区 | 国产精品不卡一区| 久久综合av免费| 69成人精品免费视频| 色噜噜狠狠成人网p站| 成人午夜在线播放| 麻豆91在线看| 日本在线不卡视频| 亚洲午夜电影网| 亚洲老司机在线| 中文字幕不卡在线| 久久午夜电影网| 日韩欧美成人一区| 欧美一区二区久久久| 欧美天天综合网| 91久久久免费一区二区| av成人老司机| 国产凹凸在线观看一区二区| 国产在线视频精品一区| 久久99精品久久只有精品| 日韩av一区二区三区四区| 亚洲午夜久久久久久久久电影院| 亚洲人午夜精品天堂一二香蕉| 国产日韩欧美高清在线| 久久精品夜色噜噜亚洲a∨| 欧美v亚洲v综合ⅴ国产v| 日韩精品一区国产麻豆| 91精品国产一区二区三区蜜臀| 欧美日韩久久不卡| 欧美日韩国产区一| 欧美老肥妇做.爰bbww视频| 欧美美女网站色| 欧美肥妇bbw| 8v天堂国产在线一区二区| 欧美精品久久一区二区三区 | 99麻豆久久久国产精品免费优播| 激情综合色丁香一区二区| 看电影不卡的网站| 久久99精品一区二区三区三区| 久草在线在线精品观看| 久久99九九99精品| 国产精品自在在线| 粉嫩蜜臀av国产精品网站| 成人午夜视频福利| 91亚洲大成网污www| 色94色欧美sute亚洲线路一ni| 在线一区二区三区四区五区 | 91国内精品野花午夜精品| 欧美性大战久久久久久久| 欧美日韩国产乱码电影| 欧美狂野另类xxxxoooo| 日韩一区二区三区高清免费看看| 欧美电影免费观看高清完整版在线| 欧美电影免费观看高清完整版在线观看| 欧美成人精品高清在线播放| 精品国产髙清在线看国产毛片| 久久久久成人黄色影片| 国产精品久久久久久久久免费相片| 国产精品久久久久影院亚瑟| 亚洲免费色视频| 日一区二区三区| 韩国毛片一区二区三区| 国产成人高清视频| 色欧美88888久久久久久影院| 欧美午夜精品久久久| 欧美一区二区三区啪啪| 26uuu欧美日本| 亚洲欧洲三级电影| 午夜精品久久久久久久| 激情文学综合网| av色综合久久天堂av综合| 欧美在线免费视屏| 欧美xxxxx裸体时装秀| 中文字幕巨乱亚洲| 亚洲国产精品一区二区久久恐怖片 | 91精品欧美一区二区三区综合在| 精品国产亚洲在线| 国产精品初高中害羞小美女文| 亚洲午夜在线观看视频在线| 看电视剧不卡顿的网站| 99久久久国产精品免费蜜臀| 色天天综合色天天久久| 日韩美女一区二区三区| 国产精品欧美久久久久无广告| 亚洲国产中文字幕在线视频综合| 精品综合免费视频观看| 97久久精品人人澡人人爽| 欧美一区二区在线不卡| 日本一区二区三区四区| 午夜免费久久看| 国产成人午夜99999| 欧美图区在线视频| 久久精品人人做人人爽人人| 亚洲在线中文字幕| 国产一区二区三区在线观看免费视频| 99久久久无码国产精品| 日韩视频不卡中文| 亚洲精品欧美激情| 久久精品国产第一区二区三区| 99国产精品99久久久久久| 91精品国产欧美一区二区| 国产精品理论片在线观看| 蜜臀av性久久久久蜜臀aⅴ| 99视频一区二区三区| 精品久久久久久久人人人人传媒| 亚洲欧美日韩电影| 国产一区二区在线观看视频| 欧美日韩精品福利| 中文字幕一区在线观看|