📄 modifyuserform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package ssl.struts.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: 09-13-2007
*
* XDoclet definition:
* @struts.form name="modifyUserForm"
*/
public class ModifyUserForm extends ActionForm {
/*
* Generated fields
*/
/** confirmPassword property */
private String confirmPassword;
/** currentPassword property */
private String currentPassword;
/** newPassword property */
private String newPassword;
/*
* 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 confirmPassword.
* @return String
*/
public String getConfirmPassword() {
return confirmPassword;
}
/**
* Set the confirmPassword.
* @param confirmPassword The confirmPassword to set
*/
public void setConfirmPassword(String confirmPassword) {
this.confirmPassword = confirmPassword;
}
/**
* Returns the currentPassword.
* @return String
*/
public String getCurrentPassword() {
return currentPassword;
}
/**
* Set the currentPassword.
* @param currentPassword The currentPassword to set
*/
public void setCurrentPassword(String currentPassword) {
this.currentPassword = currentPassword;
}
/**
* Returns the newPassword.
* @return String
*/
public String getNewPassword() {
return newPassword;
}
/**
* Set the newPassword.
* @param newPassword The newPassword to set
*/
public void setNewPassword(String newPassword) {
this.newPassword = newPassword;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -