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

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