accountform.java
来自「jpetstore struts spring hibernate」· Java 代码 · 共 46 行
JAVA
46 行
package org.springframework.samples.jpetstore.web.spring;
import java.io.Serializable;
import org.springframework.samples.jpetstore.domain.Account;
/**
* @author Juergen Hoeller
* @since 01.12.2003
*/
public class AccountForm implements Serializable {
private Account account;
private boolean newAccount;
private String repeatedPassword;
public AccountForm(Account account) {
this.account = account;
this.newAccount = false;
}
public AccountForm() {
this.account = new Account();
this.newAccount = true;
}
public Account 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 + =
减小字号Ctrl + -
显示快捷键?