actionform1.java

来自「Java Pattern Oriented Framework (Jt) 是为了」· Java 代码 · 共 35 行

JAVA
35
字号
package Jt.wizard.struts;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
import org.apache.struts.upload.FormFile;

public class ActionForm1 extends ActionForm {

    private static final long serialVersionUID = 1L;
    protected FormFile theFile;
    private String classname;


    public FormFile getTheFile() {
        return theFile;
    }


    public void setTheFile(FormFile theFile) {
        this.theFile = theFile;
    }


    public String getClassname() {
        return classname;
    }


    public void setClassname(String classname) {
        this.classname = classname;
    }


}

⌨️ 快捷键说明

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