📄 humanfileform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.accphr.web.form;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.upload.FormFile;
import com.accphr.entity.HumanFile;
/**
* MyEclipse Struts
* Creation date: 03-05-2009
*
* XDoclet definition:
* @struts.form name="humanFileForm"
*/
public class HumanFileForm extends BaseForm {
private HumanFile humanFile=new HumanFile();
//头像
private FormFile headPic=null;
public FormFile getHeadPic() {
return headPic;
}
public void setHeadPic(FormFile headPic) {
this.headPic = headPic;
}
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
return null;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
public HumanFile getHumanFile() {
return humanFile;
}
public void setHumanFile(HumanFile humanFile) {
this.humanFile = humanFile;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -