?? address.java
字號:
//
// Address.java
//
package apply;
public class Address
{
private int id;
private String username = null;
private String rname = null;
private String email = null;
private String title = null;
private String content = null;
private String postdate = null;
public Address (int aid, String uname, String rname, String em, String tl, String ct, String pd)
{
this.id = aid;
this.username = uname;
this.rname = rname;
this.email = em;
this.title = tl;
this.content = ct;
this.postdate = pd;
}
public int getId ()
{
return this.id;
}
public String getUsername ()
{
return this.username;
}
public String getRname ()
{
return this.rname;
}
public String getEmail ()
{
return this.email;
}
public String getTitle ()
{
return this.title;
}
public String getContent ()
{
return this.content;
}
public String getPostdate ()
{
return this.postdate;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -