studentform.java

来自「java网上考试系统」· Java 代码 · 共 39 行

JAVA
39
字号
package com.qrsx.exam.struts.form;

/**
 * Generated by XDoclet/actionform. This class can be further processed with XDoclet/webdoclet/strutsconfigxml and XDoclet/webdoclet/strutsvalidationxml.
 *
 * @struts.form name="studentForm"
 */
public class StudentForm
    extends    com.qrsx.exam.struts.form.UserForm
    implements java.io.Serializable
{
    protected java.lang.String fullname;

    /** Default empty constructor. */
    public StudentForm() {}

    public java.lang.String getFullname()
    {
        return this.fullname;
    }

   /**
    */

    public void setFullname( java.lang.String fullname )
    {
        this.fullname = fullname;
    }

    /**
     * @see org.apache.struts.action.ActionForm#reset(org.apache.struts.action.ActionMapping,
     *                                                javax.servlet.http.HttpServletRequest)
     */
    public void reset(org.apache.struts.action.ActionMapping mapping,
        javax.servlet.http.HttpServletRequest request) {
        // reset any boolean data types to false
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?