📄 deptform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.example.web.actionform;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: 01-25-2007 * * XDoclet definition: * @struts.form name="deptForm" */public class DeptForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** unitType property */ private String unitType; /** memo property */ private String memo; /** unitEmail property */ private String unitEmail; /** telephone property */ private String telephone; /** allFatherId property */ private String allFatherId; /** unitCode property */ private String unitCode; /** unitId property */ private String unitId; /** fatherId property */ private String fatherId; /** unitName property */ private String unitName; // --------------------------------------------------------- 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 unitType. * @return String */ public String getUnitType() { return unitType; } /** * Set the unitType. * @param unitType The unitType to set */ public void setUnitType(String unitType) { this.unitType = unitType; } /** * Returns the memo. * @return String */ public String getMemo() { return memo; } /** * Set the memo. * @param memo The memo to set */ public void setMemo(String memo) { this.memo = memo; } /** * Returns the unitEmail. * @return String */ public String getUnitEmail() { return unitEmail; } /** * Set the unitEmail. * @param unitEmail The unitEmail to set */ public void setUnitEmail(String unitEmail) { this.unitEmail = unitEmail; } /** * Returns the telephone. * @return String */ public String getTelephone() { return telephone; } /** * Set the telephone. * @param telephone The telephone to set */ public void setTelephone(String telephone) { this.telephone = telephone; } /** * Returns the allFatherId. * @return String */ public String getAllFatherId() { return allFatherId; } /** * Set the allFatherId. * @param allFatherId The allFatherId to set */ public void setAllFatherId(String allFatherId) { this.allFatherId = allFatherId; } /** * Returns the unitCode. * @return String */ public String getUnitCode() { return unitCode; } /** * Set the unitCode. * @param unitCode The unitCode to set */ public void setUnitCode(String unitCode) { this.unitCode = unitCode; } /** * Returns the unitId. * @return String */ public String getUnitId() { return unitId; } /** * Set the unitId. * @param unitId The unitId to set */ public void setUnitId(String unitId) { this.unitId = unitId; } /** * Returns the fatherId. * @return String */ public String getFatherId() { return fatherId; } /** * Set the fatherId. * @param fatherId The fatherId to set */ public void setFatherId(String fatherId) { this.fatherId = fatherId; } /** * Returns the unitName. * @return String */ public String getUnitName() { return unitName; } /** * Set the unitName. * @param unitName The unitName to set */ public void setUnitName(String unitName) { this.unitName = unitName; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -