registerinfo.java

来自「一个关于Spring框架的示例应用程序,简单使用,可以参考.」· Java 代码 · 共 66 行

JAVA
66
字号
/*
 * $Workfile: RegisterInfo.java$ 
 * Copyright (c) 2005 Freeborders.
 * All rights reserved.
 *
 * Last Changed by: $Author:user$  
 * On: $Date: 2005-6-10 10:10:48$ 
 * $Revision: 1$ 
 */
package base;

/**
 * Class description goes here.
 * @version 1.0  2005-6-10 
 * @author user
 */
public class RegisterInfo
{
	private String username;
	private String password1;
	private String password2; 
	
	/**
	 * @return Returns the password1.
	 */
	public String getPassword1()
	{
		return password1;
	}
	/**
	 * @param password1 The password1 to set.
	 */
	public void setPassword1(String password1)
	{
		this.password1 = password1;
	}
	/**
	 * @return Returns the password2.
	 */
	public String getPassword2()
	{
		return password2;
	}
	/**
	 * @param password2 The password2 to set.
	 */
	public void setPassword2(String password2)
	{
		this.password2 = password2;
	}
	/**
	 * @return Returns the username.
	 */
	public String getUsername()
	{
		return username;
	}
	/**
	 * @param username The username to set.
	 */
	public void setUsername(String username)
	{
		this.username = username;
	}
}

⌨️ 快捷键说明

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