📄 loginform.java
字号:
/*
* LoginForm.java
*
* Created on 2008年3月4日, 上午9:35
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author Administrator
*/
import org.apache.struts.action.*;
public class LoginForm extends ActionForm{
private String username;
private String password;
public String getPassword()
{return password;
}
public void setPassword(String password)
{this.password=password;
}
public String getUsername()
{return username;
}
public void setUsername(String username)
{this.username=username;
}
/** Creates a new instance of LoginForm */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -