📄 deptform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.chinatelecom.web.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 03-22-2009
*
* XDoclet definition:
* @struts.form name="dept"
*/
public class DeptForm extends ActionForm {
/*
* Generated fields
*/
/** deptName property */
private String deptName;
/** deptManager property */
private String deptManager;
/** deptNote property */
private String deptNote;
/** deptMobile property */
private String deptMobile;
/** deptFax property */
private String deptFax;
/** deptPhone property */
private String deptPhone;
/*
* Generated 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 deptName.
* @return String
*/
public String getDeptName() {
return deptName;
}
/**
* Set the deptName.
* @param deptName The deptName to set
*/
public void setDeptName(String deptName) {
this.deptName = deptName;
}
/**
* Returns the deptManager.
* @return String
*/
public String getDeptManager() {
return deptManager;
}
/**
* Set the deptManager.
* @param deptManager The deptManager to set
*/
public void setDeptManager(String deptManager) {
this.deptManager = deptManager;
}
/**
* Returns the deptNote.
* @return String
*/
public String getDeptNote() {
return deptNote;
}
/**
* Set the deptNote.
* @param deptNote The deptNote to set
*/
public void setDeptNote(String deptNote) {
this.deptNote = deptNote;
}
/**
* Returns the deptMobile.
* @return String
*/
public String getDeptMobile() {
return deptMobile;
}
/**
* Set the deptMobile.
* @param deptMobile The deptMobile to set
*/
public void setDeptMobile(String deptMobile) {
this.deptMobile = deptMobile;
}
/**
* Returns the deptFax.
* @return String
*/
public String getDeptFax() {
return deptFax;
}
/**
* Set the deptFax.
* @param deptFax The deptFax to set
*/
public void setDeptFax(String deptFax) {
this.deptFax = deptFax;
}
/**
* Returns the deptPhone.
* @return String
*/
public String getDeptPhone() {
return deptPhone;
}
/**
* Set the deptPhone.
* @param deptPhone The deptPhone to set
*/
public void setDeptPhone(String deptPhone) {
this.deptPhone = deptPhone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -