actionform2.java
来自「Java Pattern Oriented Framework (Jt) 是为了」· Java 代码 · 共 37 行
JAVA
37 行
package Jt.wizard.struts;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
import org.apache.struts.upload.FormFile;
public class ActionForm2 extends ActionForm {
private static final long serialVersionUID = 1L;
protected FormFile theFile;
private String formName;
public FormFile getTheFile() {
return theFile;
}
public void setTheFile(FormFile theFile) {
this.theFile = theFile;
}
public String getFormName() {
return formName;
}
public void setFormName(String formName) {
this.formName = formName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?