?? adduserform.java
字號(hào):
package com.ICT.AFC.user.forms;import org.apache.struts.action.*;import javax.servlet.http.*;public class AddUserForm extends ActionForm { private String account; private String password; private String remark; private String role; private String userName; private String userdep; public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getRole() { return role; } public void setRole(String role) { this.role = role; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getUserdep() { return userdep; } public void setUserdep(String userdep) { this.userdep = userdep; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -