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