?? 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 */
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -