📄 insertform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xslpackage com.hdlb.struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionMapping;import org.apache.struts.validator.ValidatorForm;/** * MyEclipse Struts * Creation date: 10-28-2006 * * XDoclet definition: * @struts.form name="insertForm" */public class InsertForm extends ValidatorForm { // --------------------------------------------------------- Instance Variables /** fsendTime property */ private String fsendTime; /** flimitTime property */ private Integer flimitTime; /** fsignPerson property */ private String fsignPerson; /** ffrom property */ private String ffrom; /** ftoLeader property */ private String ftoLeader; /** fdocZiHao property */ private String fdocZiHao; /** frecRoom property */ private String frecRoom; /** fdocName property */ private String fdocName; /** ftype property */ private String ftype; // --------------------------------------------------------- Methods /** * Method validate * @param mapping * @param request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub return null; } /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub } /** * Returns the fsendTime. * @return String */ public String getFsendTime() { return fsendTime; } /** * Set the fsendTime. * @param fsendTime The fsendTime to set */ public void setFsendTime(String fsendTime) { this.fsendTime = fsendTime; } /** * Returns the flimitTime. * @return Integer */ public Integer getFlimitTime() { return flimitTime; } /** * Set the flimitTime. * @param flimitTime The flimitTime to set */ public void setFlimitTime(Integer flimitTime) { this.flimitTime = flimitTime; } /** * Returns the fsignPerson. * @return String */ public String getFsignPerson() { return fsignPerson; } /** * Set the fsignPerson. * @param fsignPerson The fsignPerson to set */ public void setFsignPerson(String fsignPerson) { this.fsignPerson = fsignPerson; } /** * Returns the ffrom. * @return String */ public String getFfrom() { return ffrom; } /** * Set the ffrom. * @param ffrom The ffrom to set */ public void setFfrom(String ffrom) { this.ffrom = ffrom; } /** * Returns the ftoLeader. * @return String */ public String getFtoLeader() { return ftoLeader; } /** * Set the ftoLeader. * @param ftoLeader The ftoLeader to set */ public void setFtoLeader(String ftoLeader) { this.ftoLeader = ftoLeader; } /** * Returns the fdocZiHao. * @return String */ public String getFdocZiHao() { return fdocZiHao; } /** * Set the fdocZiHao. * @param fdocZiHao The fdocZiHao to set */ public void setFdocZiHao(String fdocZiHao) { this.fdocZiHao = fdocZiHao; } /** * Returns the frecRoom . * @return String */ public String getFrecRoom() { return frecRoom; } /** * Set the frecRoom . * @param frecRoom The frecRoom to set */ public void setFrecRoom(String frecRoom) { this.frecRoom = frecRoom; } /** * Returns the fdocName. * @return String */ public String getFdocName() { return fdocName; } /** * Set the fdocName. * @param fdocName The fdocName to set */ public void setFdocName(String fdocName) { this.fdocName = fdocName; } /** * Returns the ftype. * @return String */ public String getFtype() { return ftype; } /** * Set the ftype. * @param ftype The ftype to set */ public void setFtype(String ftype) { this.ftype = ftype; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -