CommentLog.java :  » Wiki-Engine » ocwiki » org » ocwiki » data » log » Java Open Source

Java Open Source » Wiki Engine » ocwiki 
ocwiki » org » ocwiki » data » log » CommentLog.java
package org.ocwiki.data.log;

import java.util.Date;

import org.ocwiki.data.Article;
import org.ocwiki.data.Comment;
import org.ocwiki.data.Resource;
import org.ocwiki.data.User;

public class CommentLog extends ResourceLog {

  private Comment comment;

  public CommentLog() {
  }
  
  public CommentLog(User user, Date timestamp,
      Resource<? extends Article> resource, Comment comment) {
    super(user, timestamp, resource);
    this.comment = comment;
  }

  public Comment getComment() {
    return comment;
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.