⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountform.java

📁 Spring的项目
💻 JAVA
字号:
/**
 * even with struts's ActionForm
 */
package carNumber.domain;

import java.io.Serializable;

/**
 * @author xiaobin
 *
 */
public class AccountForm implements Serializable {
	private Account account;
	
	private boolean accountBlnNew;
	
	private String repeatePassword;
	
	public AccountForm(Account act) {
		// TODO Auto-generated constructor stub
		this.account = act;
		this.accountBlnNew = false;
	}
	
	public AccountForm() {
		// TODO Auto-generated constructor stub
		this.account = new Account();
		this.accountBlnNew = true;
	}
	
	public Account getAccount() {
		return this.account;
	}
	
	public boolean isNewAccount() {
		return this.accountBlnNew;
	}
	
	public void setRepeatePassword(String rPWD) {
		this.repeatePassword = rPWD;
	}
	
	public String getRepeatePassword() {
		return this.repeatePassword;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -