📄 passwordform.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -