registerinfo.java

来自「正在学习java web编程」· Java 代码 · 共 47 行

JAVA
47
字号
/*
 * Created on 2006-1-19
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.ac.ict;

import java.util.Date;

/**
 * @author zhw
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class RegisterInfo {
	private String userName;
	private String passWord;
	private Date registerDate;
	
	public void setUserName(String newname){
		this.userName = newname;
	}
	
	public String getUserName(){
		return this.userName;
	}
	
	public void setPassWord(String new_pass){
		this.passWord = new_pass;
	}
	
	public String getPassWord(){
		return this.passWord;
	}
	
	public Date getRegisterDate(){
		return this.registerDate;
	}
	
	public void setRegisterDate(Date new_date){
		this.registerDate = new_date;
	}

}

⌨️ 快捷键说明

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