亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
久久丝袜美腿综合| 综合中文字幕亚洲| 一本高清dvd不卡在线观看| 日本vs亚洲vs韩国一区三区 | 欧美精品aⅴ在线视频| 国产精品资源站在线| 石原莉奈一区二区三区在线观看| 中文在线一区二区| 国产精品女主播av| 日韩视频中午一区| 在线免费观看一区| 99国产精品一区| 国产成人免费xxxxxxxx| 日韩高清一级片| 亚洲地区一二三色| 一区二区三区四区激情| 欧美国产综合一区二区| 欧美一级高清片在线观看| 欧美日韩在线观看一区二区 | 国产专区综合网| 人人狠狠综合久久亚洲| 伊人开心综合网| 中文字幕亚洲综合久久菠萝蜜| 精品成a人在线观看| 欧美一区在线视频| 欧美日韩国产免费一区二区| 日本伦理一区二区| 91成人在线观看喷潮| 91在线小视频| 97se亚洲国产综合自在线 | 91精品国产91久久久久久最新毛片| 91麻豆国产在线观看| 99麻豆久久久国产精品免费 | 精品一区精品二区高清| 青椒成人免费视频| 另类欧美日韩国产在线| 日本欧美久久久久免费播放网| 日韩中文字幕一区二区三区| 五月婷婷综合激情| 日韩一区精品视频| 男男gaygay亚洲| 极品少妇一区二区| 国产美女在线精品| 成人a级免费电影| 成人免费观看av| 99麻豆久久久国产精品免费| 一本久久综合亚洲鲁鲁五月天| 91啪亚洲精品| 欧美日韩一区二区三区在线 | 日本丰满少妇一区二区三区| 色视频成人在线观看免| 欧美三级一区二区| 欧美一区二区三区系列电影| 日韩一区二区免费高清| 亚洲女厕所小便bbb| 日韩精品成人一区二区三区| 男女男精品视频网| 国产在线精品不卡| 成人动漫中文字幕| 在线观看三级视频欧美| 91精品国产综合久久久蜜臀图片| 日韩一区国产二区欧美三区| 精品乱人伦小说| 国产精品高潮呻吟| 香蕉影视欧美成人| 国产精品888| 色就色 综合激情| 日韩一区二区三区四区| 欧美国产视频在线| 午夜激情一区二区| 国产精品影音先锋| 91啦中文在线观看| 欧美一区二区三区的| 国产欧美精品一区| 亚洲成人精品一区二区| 国内精品伊人久久久久av影院 | 色哟哟一区二区| 日韩免费在线观看| 最新不卡av在线| 蜜桃一区二区三区在线| 成人av影院在线| 91精品国产品国语在线不卡| 欧美国产在线观看| 日本不卡的三区四区五区| av在线不卡免费看| 91精品欧美综合在线观看最新| 国产欧美日本一区二区三区| 亚洲成av人片在www色猫咪| 国产精品夜夜爽| 欧美日韩成人在线| 欧美高清在线一区| 青青草91视频| 在线免费观看不卡av| 国产欧美日韩亚州综合| 日本美女一区二区| 91福利在线看| 中文字幕av不卡| 久久精品99久久久| 欧美亚洲日本一区| 国产精品私房写真福利视频| 理论电影国产精品| 欧美日韩免费观看一区二区三区| 国产日韩欧美高清在线| 毛片基地黄久久久久久天堂| 欧美综合久久久| 成人欧美一区二区三区黑人麻豆| 国模无码大尺度一区二区三区| 欧美日韩精品一区二区在线播放| 国产精品久久久久三级| 狠狠色丁香九九婷婷综合五月| 欧美色老头old∨ideo| 亚洲天堂中文字幕| 国产成人免费在线视频| 欧美精品一区二区三区高清aⅴ| 亚洲成av人片在线观看无码| 91福利国产精品| 在线观看精品一区| 久久久亚洲精品一区二区三区| 日韩激情视频在线观看| 欧美日韩一卡二卡| 亚洲柠檬福利资源导航| 99久久久免费精品国产一区二区| 久久亚洲精精品中文字幕早川悠里| 日本欧美在线看| 制服丝袜成人动漫| 日韩高清在线不卡| 这里只有精品免费| 欧美a级一区二区| 91精品国产一区二区三区蜜臀| 天堂成人国产精品一区| 欧美日韩一区二区电影| 无吗不卡中文字幕| 555夜色666亚洲国产免| 免费成人你懂的| 日韩亚洲电影在线| 麻豆国产精品视频| 精品国精品国产| 国产一区二区三区不卡在线观看 | 一区二区三区在线免费播放| 91小视频免费观看| 亚洲美女屁股眼交| 欧美日韩三级在线| 蜜臂av日日欢夜夜爽一区| 日韩久久免费av| 国产一区二区三区免费观看| 久久网站最新地址| 国产成人综合在线| 亚洲欧洲99久久| 欧美日韩精品欧美日韩精品| 日本亚洲视频在线| 久久久激情视频| av不卡一区二区三区| 亚洲激情成人在线| 欧美疯狂性受xxxxx喷水图片| 日日骚欧美日韩| 久久久久久久久久看片| 成人午夜看片网址| 亚洲永久免费视频| 日韩精品专区在线影院观看| 国内精品伊人久久久久av影院| 国产精品免费aⅴ片在线观看| 精品国产麻豆免费人成网站| 尤物在线观看一区| 99精品视频一区二区| 一区二区成人在线| 精品免费一区二区三区| 成年人午夜久久久| 午夜av电影一区| 国产欧美一区二区精品婷婷 | 国产美女一区二区三区| 中文字幕日韩av资源站| 欧美日本视频在线| 国产成人精品免费网站| 亚洲韩国一区二区三区| 26uuu亚洲综合色| 91麻豆免费视频| 精品一区二区免费| 亚洲免费观看高清完整版在线观看| 欧美日韩成人一区二区| 成人综合在线网站| 天堂一区二区在线| 欧美激情一区二区三区| 6080亚洲精品一区二区| 亚洲一区二区三区激情| 色悠久久久久综合欧美99| 另类小说色综合网站| 亚洲色图视频网| 久久久亚洲国产美女国产盗摄| 欧洲精品在线观看| 国产不卡视频在线观看| 日本不卡123| 一区二区三区四区在线| 久久免费电影网| 在线播放91灌醉迷j高跟美女 | 91丨porny丨中文| 欧美日韩不卡一区二区| 日韩美女视频一区二区在线观看| av一区二区三区| 激情综合色播激情啊| 午夜精品久久久久久久99水蜜桃 |