?? updatestudentform.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="updateStudentForm" */public class UpdateStudentForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** professon_id property */ private String profession_id; /** student_sex property */ private String student_sex; /** studnet_name property */ private String student_name; // --------------------------------------------------------- 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 professon_id. * @return String */ public String getProfession_id() { return profession_id; } /** * Set the professon_id. * @param professon_id The professon_id to set */ public void setProfession_id(String profession_id) { this.profession_id = profession_id; } /** * Returns the student_sex. * @return String */ public String getStudent_sex() { return student_sex; } /** * Set the student_sex. * @param student_sex The student_sex to set */ public void setStudent_sex(String student_sex) { this.student_sex = student_sex; } /** * Returns the studnet_name. * @return String */ public String getStudent_name() { return student_name; } /** * Set the studnet_name. * @param studnet_name The studnet_name to set */ public void setStudent_name(String student_name) { this.student_name = student_name; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -