passwordform.java
来自「openblog是一个博客管理系统」· Java 代码 · 共 105 行
JAVA
105 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package org.openblog.struts.user.form;
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: 12-18-2008
*
* XDoclet definition:
* @struts.form name="passwordForm"
*/
public class PasswordForm extends ActionForm {
/*
* Generated fields
*/
/** ensure property */
private String ensure;
/** newpwd property */
private String newpwd;
/** oldpwd property */
private String oldpwd;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* Returns the ensure.
* @return String
*/
public String getEnsure() {
return ensure;
}
/**
* Set the ensure.
* @param ensure The ensure to set
*/
public void setEnsure(String ensure) {
this.ensure = ensure;
}
/**
* Returns the newpwd.
* @return String
*/
public String getNewpwd() {
return newpwd;
}
/**
* Set the newpwd.
* @param newpwd The newpwd to set
*/
public void setNewpwd(String newpwd) {
this.newpwd = newpwd;
}
/**
* Returns the oldpwd.
* @return String
*/
public String getOldpwd() {
return oldpwd;
}
/**
* Set the oldpwd.
* @param oldpwd The oldpwd to set
*/
public void setOldpwd(String oldpwd) {
this.oldpwd = oldpwd;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?