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

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

?? formtag.java

?? struts的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * $Id: FormTag.java 331056 2005-11-06 01:29:01Z niallp $ 
 *
 * Copyright 1999-2005 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.taglib.html;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.TagSupport;

import org.apache.struts.Globals;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionServlet;
import org.apache.struts.config.FormBeanConfig;
import org.apache.struts.config.ModuleConfig;
import org.apache.struts.taglib.TagUtils;
import org.apache.struts.util.MessageResources;
import org.apache.struts.util.RequestUtils;

/**
 * Custom tag that represents an input form, associated with a bean whose
 * properties correspond to the various fields of the form.
 *
 * @version $Rev: 331056 $ $Date: 2005-11-06 01:29:01 +0000 (Sun, 06 Nov 2005) $
 */
public class FormTag extends TagSupport {

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

    /**
     * The action URL to which this form should be submitted, if any.
     */
    protected String action = null;

    /**
     * The module configuration for our module.
     */
    protected ModuleConfig moduleConfig = null;

    /**
     * The content encoding to be used on a POST submit.
     */
    protected String enctype = null;

    /**
     * The name of the field to receive focus, if any.
     */
    protected String focus = null;

    /**
     * The index in the focus field array to receive focus.  This only applies if the field
     * given in the focus attribute is actually an array of fields.  This allows a specific
     * field in a radio button array to receive focus while still allowing indexed field
     * names like "myRadioButtonField[1]" to be passed in the focus attribute.
     * @since Struts 1.1
     */
    protected String focusIndex = null;

    /**
     * The line ending string.
     */
    protected static String lineEnd = System.getProperty("line.separator");

    /**
     * The ActionMapping defining where we will be submitting this form
     */
    protected ActionMapping mapping = null;

    /**
     * The message resources for this package.
     */
    protected static MessageResources messages =
        MessageResources.getMessageResources(Constants.Package + ".LocalStrings");

    /**
     * The request method used when submitting this form.
     */
    protected String method = null;

    /**
     * The onReset event script.
     */
    protected String onreset = null;

    /**
     * The onSubmit event script.
     */
    protected String onsubmit = null;

    /**
     * Include language attribute in the focus script's <script> element.  This
     * property is ignored in XHTML mode.
     * @since Struts 1.2
     */
    protected boolean scriptLanguage = true;

    /**
     * The ActionServlet instance we are associated with (so that we can
     * initialize the <code>servlet</code> property on any form bean that
     * we create).
     */
    protected ActionServlet servlet = null;

    /**
     * The style attribute associated with this tag.
     */
    protected String style = null;

    /**
     * The style class associated with this tag.
     */
    protected String styleClass = null;

    /**
     * The identifier associated with this tag.
     */
    protected String styleId = null;

    /**
     * The window target.
     */
    protected String target = null;

    /**
     * The name of the form bean to (create and) use. This is either the same
     * as the 'name' attribute, if that was specified, or is obtained from the
     * associated <code>ActionMapping</code> otherwise.
     */
    protected String beanName = null;

    /**
     * The scope of the form bean to (create and) use. This is either the same
     * as the 'scope' attribute, if that was specified, or is obtained from the
     * associated <code>ActionMapping</code> otherwise.
     */
    protected String beanScope = null;

    /**
     * The type of the form bean to (create and) use. This is either the same
     * as the 'type' attribute, if that was specified, or is obtained from the
     * associated <code>ActionMapping</code> otherwise.
     */
    protected String beanType = null;

    /**
     * The list of character encodings for input data that the server should
     * accept.
     */
    protected String acceptCharset = null;

    /** Controls whether child controls should be 'disabled'. */
    private boolean disabled = false;

    /** Controls whether child controls should be 'readonly'. */
    protected boolean readonly = false;

    // ------------------------------------------------------------- Properties

    /**
     * Return the name of the form bean corresponding to this tag. There is
     * no corresponding setter method; this method exists so that the nested
     * tag classes can obtain the actual bean name derived from other
     * attributes of the tag.
     */
    public String getBeanName() {

        return beanName;

    }

    /**
     * Return the action URL to which this form should be submitted.
     */
    public String getAction() {

        return (this.action);

    }

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

        this.action = action;

    }

    /**
     * Return the content encoding used when submitting this form.
     */
    public String getEnctype() {

        return (this.enctype);

    }

    /**
     * Set the content encoding used when submitting this form.
     *
     * @param enctype The new content encoding
     */
    public void setEnctype(String enctype) {

        this.enctype = enctype;

    }

    /**
     * Return the focus field name for this form.
     */
    public String getFocus() {

        return (this.focus);

    }

    /**
     * Set the focus field name for this form.
     *
     * @param focus The new focus field name
     */
    public void setFocus(String focus) {

        this.focus = focus;

    }

    /**
     * Return the request method used when submitting this form.
     */
    public String getMethod() {

        return (this.method);

    }

    /**
     * Set the request method used when submitting this form.
     *
     * @param method The new request method
     */
    public void setMethod(String method) {

        this.method = method;

    }

    /**
     * Return the onReset event script.
     */
    public String getOnreset() {

        return (this.onreset);

    }

    /**
     * Set the onReset event script.
     *
     * @param onReset The new event script
     */
    public void setOnreset(String onReset) {

        this.onreset = onReset;

    }

    /**
     * Return the onSubmit event script.
     */
    public String getOnsubmit() {

        return (this.onsubmit);

    }

    /**
     * Set the onSubmit event script.
     *
     * @param onSubmit The new event script
     */
    public void setOnsubmit(String onSubmit) {

        this.onsubmit = onSubmit;

    }

    /**
     * Return the style attribute for this tag.
     */
    public String getStyle() {

        return (this.style);

    }

    /**
     * Set the style attribute for this tag.
     *
     * @param style The new style attribute
     */
    public void setStyle(String style) {

        this.style = style;

    }

    /**
     * Return the style class for this tag.
     */
    public String getStyleClass() {

        return (this.styleClass);

    }

    /**
     * Set the style class for this tag.
     *
     * @param styleClass The new style class
     */
    public void setStyleClass(String styleClass) {

        this.styleClass = styleClass;

    }

    /**
     * Return the style identifier for this tag.
     */
    public String getStyleId() {

        return (this.styleId);

    }

    /**
     * Set the style identifier for this tag.
     *
     * @param styleId The new style identifier
     */
    public void setStyleId(String styleId) {

        this.styleId = styleId;

    }

    /**
     * Return the window target.
     */
    public String getTarget() {

        return (this.target);

    }

    /**
     * Set the window target.
     *
     * @param target The new window target
     */
    public void setTarget(String target) {

        this.target = target;

    }

    /**
     * Return the list of character encodings accepted.
     */
    public String getAcceptCharset() {

        return acceptCharset;

    }

    /**
     * Set the list of character encodings accepted.
     *
     * @param acceptCharset The list of character encodings
     */
    public void setAcceptCharset(String acceptCharset) {

        this.acceptCharset= acceptCharset;

    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久亚洲精精品中文字幕早川悠里| 亚洲乱码国产乱码精品精可以看| 国产免费成人在线视频| 久久99久久精品欧美| 成人av网站在线| 国产嫩草影院久久久久| 久久精品亚洲乱码伦伦中文| 日本道色综合久久| 蜜桃一区二区三区在线观看| 国产九色精品成人porny| 在线视频国内一区二区| 一级做a爱片久久| 欧美丰满美乳xxx高潮www| 经典三级在线一区| 国产在线精品一区在线观看麻豆| 欧美成人一区二区三区在线观看 | 一本色道久久综合精品竹菊| 亚洲在线视频一区| 亚洲精品一区二区三区影院| 91在线一区二区| 极品美女销魂一区二区三区| 老司机免费视频一区二区| 精品一区二区三区在线观看| 国产另类ts人妖一区二区| 国产精品蜜臀在线观看| 紧缚奴在线一区二区三区| 国产在线不卡一区| 粉嫩欧美一区二区三区高清影视| 一区二区视频在线看| 亚洲不卡av一区二区三区| 国产精品久久久久久久久免费相片 | 欧美一区二区三区视频在线| 99麻豆久久久国产精品免费| 国产伦精品一区二区三区免费迷 | 日韩欧美在线不卡| 欧美网站大全在线观看| 91麻豆swag| 国产成人免费在线视频| 国产福利电影一区二区三区| 成人网页在线观看| 国产精品一区二区在线观看不卡| 97精品视频在线观看自产线路二 | 精品一区二区三区免费观看| 不卡一区二区三区四区| 91精品国产综合久久精品| 综合久久久久久| 欧美国产精品一区二区三区| 欧美成人a视频| 日韩一区在线播放| 一区二区三区不卡视频在线观看| 久久99精品视频| 欧美日韩视频专区在线播放| 欧美色视频一区| 亚洲视频资源在线| 国产精品一区二区在线观看网站| 欧美久久久久免费| 一区二区三区久久| 欧美一区二区在线不卡| 樱桃视频在线观看一区| 久久97超碰国产精品超碰| 色综合网站在线| 奇米精品一区二区三区在线观看一| 夜夜嗨av一区二区三区 | 99热在这里有精品免费| 亚洲精品一区二区精华| 日本午夜一本久久久综合| 日韩va亚洲va欧美va久久| 99久久精品国产观看| 国产精品伦理一区二区| 国产麻豆日韩欧美久久| 久久综合中文字幕| 岛国一区二区在线观看| 日韩女优av电影在线观看| 国产亚洲一区二区三区四区| 久久精品国产澳门| 日韩三区在线观看| 麻豆精品一区二区综合av| 日韩欧美国产成人一区二区| 免费观看日韩av| 久久色成人在线| 国产精品亚洲一区二区三区妖精 | 久久一留热品黄| 国产在线观看一区二区| 久久久夜色精品亚洲| 亚洲欧美色综合| 国产一区二区三区| 日本一区二区免费在线观看视频| 国产乱码精品1区2区3区| 国产精品视频你懂的| www.av亚洲| 亚洲精品国产一区二区精华液| 欧洲中文字幕精品| 日本va欧美va精品发布| 欧美一区二区在线观看| 国产成人午夜99999| 亚洲视频1区2区| 欧美日高清视频| 亚洲国产成人午夜在线一区| 不卡一区中文字幕| 夜夜揉揉日日人人青青一国产精品| 欧美精品一级二级| 国产一区二区三区香蕉| 国产精品激情偷乱一区二区∴| 色综合天天综合在线视频| 亚洲h在线观看| 日韩免费性生活视频播放| 国产精品羞羞答答xxdd| 亚洲免费在线视频| 日韩一区二区免费在线电影 | 亚洲免费观看高清完整版在线观看| 欧美在线三级电影| 国产综合久久久久久鬼色| 亚洲免费观看在线观看| 日韩女优制服丝袜电影| 色成人在线视频| 国内精品国产三级国产a久久| 亚洲人成小说网站色在线| 制服丝袜日韩国产| 日韩精品一区第一页| 精品污污网站免费看| 91啦中文在线观看| 亚洲成人动漫在线免费观看| 国产亚洲一本大道中文在线| 欧美一区二区三区在| 在线一区二区视频| 国产一区视频导航| 日韩精品视频网站| 亚洲最大色网站| 国产精品毛片久久久久久久| 日韩一区二区三区视频在线| 欧美性猛片xxxx免费看久爱| 成人影视亚洲图片在线| 精品综合免费视频观看| 亚洲高清免费在线| 精品国内片67194| 欧美性视频一区二区三区| 97精品久久久久中文字幕| 国产精品18久久久久久久久久久久| 石原莉奈一区二区三区在线观看| 亚洲精选视频在线| 国产精品久久久久国产精品日日| 精品国产a毛片| 精品国产乱码久久久久久免费| 欧美高清视频一二三区| 欧美在线一区二区三区| 色域天天综合网| 99re这里只有精品6| 99久久免费视频.com| 国产91综合网| 成人激情动漫在线观看| 国产成人av一区二区三区在线| 国产一区视频网站| 国产成人精品www牛牛影视| 国产一级精品在线| 风流少妇一区二区| 成人性生交大片免费看视频在线| 国产精品一二一区| 粉嫩嫩av羞羞动漫久久久| 成人影视亚洲图片在线| 69成人精品免费视频| 69堂精品视频| 久久综合九色综合97婷婷 | 国产乱码字幕精品高清av| 青青草伊人久久| 国精品**一区二区三区在线蜜桃| 久久99国产精品免费| 国产福利一区二区三区| 成人性生交大片免费看中文 | 国产一区二区三区综合| 国产精品亚洲成人| 色网综合在线观看| 欧美精品九九99久久| 欧美大黄免费观看| 国产欧美精品日韩区二区麻豆天美| 国产视频亚洲色图| 亚洲乱码国产乱码精品精98午夜 | 亚洲一区在线观看免费| 五月综合激情婷婷六月色窝| 99精品欧美一区二区蜜桃免费 | 久久精品水蜜桃av综合天堂| 精品国产露脸精彩对白 | 成人高清免费在线播放| a美女胸又www黄视频久久| 欧美性色欧美a在线播放| 欧美日韩成人综合在线一区二区 | 成人综合婷婷国产精品久久蜜臀| 色综合网站在线| 日韩一区二区三区观看| 久久一二三国产| 亚洲亚洲人成综合网络| 国产剧情在线观看一区二区| 99久久婷婷国产综合精品| 91精品一区二区三区久久久久久| 久久天天做天天爱综合色| 亚洲一区二区影院| 国产成人自拍在线| 精品视频1区2区| 国产精品传媒入口麻豆| 日本中文字幕一区二区视频| av不卡免费在线观看|