?? admininfoform.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;public class AdminInfoForm extends ActionForm { // --------------------------------------------------------- Instance Variables private String username; private String admin_password; /** teacher_username property */ private String admin_username; // --------------------------------------------------------- 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 username. * @return String */ public String getUsername() { return username; } /** * Set the username. * @param username The username to set */ public void setUsername(String username) { this.username = username; } /** * Returns the teacher_password. * @return String */ public String getAdmin_password() { return admin_password; } /** * Set the teacher_password. * @param teacher_password The teacher_password to set */ public void setAdmin_password(String admin_password) { this.admin_password = admin_password; } /** * Returns the teacher_username. * @return String */ public String getAdmin_username() { return admin_username; } /** * Set the teacher_username. * @param teacher_username The teacher_username to set */ public void setAdmin_username(String admin_username) { this.admin_username = admin_username; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -