?? notice.java
字號:
/*
* Notice.java
*
* Created on 2007年3月18日, 下午12:02
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package News.Common;
/**
*
* @author Owner
*/
public class Notice implements java.io.Serializable{
private String id;
private String message;
private String time;
private String logoURL;
/** Creates a new instance of Notice */
public Notice() {
}
public void setLogoURL(String s)
{
logoURL=s;
}
public String getLogoURL()
{
return logoURL;
}
public void setId(String i)
{
id=i;
}
public String getId()
{
return id;
}
public void setMessage(String m)
{
message=m;
}
public String getMessage()
{
return message;
}
public void setTime(String t)
{
time=t;
}
public String getTime()
{
return time;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -