?? accountform.java
字號:
package com.netshop.web.struts.form;
import com.netshop.domain.model.UserInfo;
/**
* @author Juergen Hoeller
* @since 01.12.2003
*/
public class AccountForm {
private UserInfo account;
private boolean newAccount;
private String repeatedPassword;
public AccountForm(UserInfo account) {
this.account = account;
this.newAccount = false;
}
public AccountForm() {
this.account = new UserInfo();
this.newAccount = true;
}
public UserInfo getAccount() {
return account;
}
public boolean isNewAccount() {
return newAccount;
}
public void setRepeatedPassword(String repeatedPassword) {
this.repeatedPassword = repeatedPassword;
}
public String getRepeatedPassword() {
return repeatedPassword;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -