?? addprofessionform.java
字號(hào):
//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="addProfessionForm" */public class AddProfessionForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** profession_name property */ private String profession_name; /** profession_id property */ private String profession_id; /** 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; } /** * 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 profession_id. * @return String */ public String getProfession_id() { return profession_id; } /** * Set the profession_id. * @param profession_id The profession_id to set */ public void setProfession_id(String profession_id) { this.profession_id = profession_id; } /** * 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; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -