?? users.java
字號(hào):
package cs636.techconf.domain;
// Domain object for an
public class Users {
private int id;
private String usertype;
private String password;
private String firstname;
private String lastname;
private String email;
private String homephone;
private String workphone;
private String fax;
private String company;
private Address address;
public Users()
{
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -