?? loginform.java
字號:
package mypack;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
public class LoginForm extends ActionForm {
private String password = null;
private String username = null;
// Password Accessors
public String getPassword() {
return (this.password);
}
public void setPassword(String password) {
this.password = password;
}
// Username Accessors
public String getUsername() {
return (this.username);
}
public void setUsername(String username) {
this.username = username;
}
// This method is called with every request. It resets the Form
// attribute prior to setting the values in the new request.
public void reset(ActionMapping mapping, HttpServletRequest request) {
this.password = null;
this.username = null;
}
public ActionErrors validate(ActionMapping arg0,HttpServletRequest arg1){
ActionErrors errors=new ActionErrors();
if(username==null || username.equals("") ){
errors.add("username",new ActionError("error.username"));
}
return errors;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -