📄 registerinfo.java
字号:
/*
* $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -