📄 commentitem.java
字号:
package nepalon.simplestruts;
import java.util.*;
public class CommentItem
{
private String content;
private java.sql.Date time;
public CommentItem()
{
this.content="" ;
this.time =null ;
}
public void setContent(String content)
{
this.content = content;
}
public String getContent()
{
return content ;
}
public void setTime(java.sql.Date time)
{
this.time = time;
}
public java.sql.Date getTime()
{
return time ;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -