?? updateprofessionform.java
字號:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xslpackage com.huang.forms;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: 06-02-2008 * * XDoclet definition: * @struts.form name="updateProfessionForm" */public class UpdateProfessionForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** profession_name property */ private String profession_name; /** dept_id property */ private String dept_id; // --------------------------------------------------------- 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 profession_name. * @return String */ public String getProfession_name() { return profession_name; } /** * Set the profession_name. * @param profession_name The profession_name to set */ public void setProfession_name(String profession_name) { this.profession_name = profession_name; } /** * Returns the dept_id. * @return String */ public String getDept_id() { return dept_id; } /** * Set the dept_id. * @param dept_id The dept_id to set */ public void setDept_id(String dept_id) { this.dept_id = dept_id; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -