adminform.java~1~

来自「一个很不错的电子商务后台管理系统 这是一个电子商务网站的后台管理系统 要」· JAVA~1~ 代码 · 共 37 行

JAVA~1~
37
字号
package xian.bin.admin;import org.apache.struts.action.*;import javax.servlet.http.*;public class AdminForm extends ActionForm {  private String admin;  private String popedom;  private String pwd;  public String getAdmin() {    return admin;  }  public void setAdmin(String admin) {    this.admin = admin;  }  public String getPopedom() {    return popedom;  }  public void setPopedom(String popedom) {    this.popedom = popedom;  }  public String getPwd() {    return pwd;  }  public void setPwd(String pwd) {    this.pwd = pwd;  }  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) {    admin = null;    popedom = null;    pwd = null;  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?