예제 #1
0
 public boolean isDisabled() {
   return comment.isDisabled();
 }
예제 #2
0
 public String getPublishDateTime() {
   return DateUtil.dateTimeToString(comment.getPublishDate());
 }
예제 #3
0
 public Date getDate() {
   return comment.getPublishDate();
 }
예제 #4
0
 public String getPublishDate() {
   return DateUtil.toString(comment.getPublishDate());
 }
예제 #5
0
  public String getContent() {

    // keeping carriage return in HTML
    return comment.getContent().replace("\n", "<br/>");
  }
예제 #6
0
 public String getName() {
   return comment.getName();
 }
예제 #7
0
 public String getPageUrl() {
   return comment.getPageUrl();
 }
예제 #8
0
 public Long getId() {
   return comment.getId();
 }