Uses of Interface
org.blojsom.blog.Comment

Packages that use Comment
org.blojsom.blog Defines the classes and interfaces for the blojsom artifacts  
org.blojsom.blog.database Defines the classes and interfaces for the blojsom database artifacts  
org.blojsom.fetcher Defines the classes and interfaces for blojsom fetchers  
org.blojsom.fetcher.database Defines the classes and interfaces for the blojsom database fetcher  
org.blojsom.plugin.comment.event Defines the classes and interfaces for events related to the blojsom comment plugin  
 

Uses of Comment in org.blojsom.blog
 

Methods in org.blojsom.blog that return Comment
 Comment[] Entry.getCommentsAsArray()
          Get the comments as an array of Comment objects
 

Uses of Comment in org.blojsom.blog.database
 

Classes in org.blojsom.blog.database that implement Comment
 class DatabaseComment
          DatabaseComment
 

Methods in org.blojsom.blog.database that return Comment
 Comment[] DatabaseEntry.getCommentsAsArray()
          Get the comments as an array of Comment objects
 

Uses of Comment in org.blojsom.fetcher
 

Methods in org.blojsom.fetcher that return Comment
 Comment Fetcher.newComment()
          Return a new Comment instance
 

Methods in org.blojsom.fetcher with parameters of type Comment
 void Fetcher.saveComment(Blog blog, Comment comment)
          Save a given Comment
 void Fetcher.loadComment(Blog blog, Comment comment)
          Load a given Comment
 void Fetcher.deleteComment(Blog blog, Comment comment)
          Delete a given Comment
 

Uses of Comment in org.blojsom.fetcher.database
 

Methods in org.blojsom.fetcher.database that return Comment
 Comment DatabaseFetcher.newComment()
          Return a new Comment instance
 

Methods in org.blojsom.fetcher.database with parameters of type Comment
 void DatabaseFetcher.saveComment(Blog blog, Comment comment)
          Save a given Comment
 void DatabaseFetcher.loadComment(Blog blog, Comment comment)
          Load a given Comment
 void DatabaseFetcher.deleteComment(Blog blog, Comment comment)
          Delete a given Comment
 

Uses of Comment in org.blojsom.plugin.comment.event
 

Fields in org.blojsom.plugin.comment.event declared as Comment
protected  Comment CommentEvent._comment
           
 

Methods in org.blojsom.plugin.comment.event that return Comment
 Comment CommentEvent.getComment()
          Retrieve the Comment associated with the event
 

Constructors in org.blojsom.plugin.comment.event with parameters of type Comment
CommentUnmarkedSpamEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was unmarked as spam in the system.
CommentUnapprovedEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was unapproved in the system.
CommentMarkedSpamEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was marked as spam in the system.
CommentEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating something happened with a Comment in the system.
CommentDeletedEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was deleted in the system.
CommentApprovedEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was approved in the system.
CommentAddedEvent(java.lang.Object source, java.util.Date timestamp, Comment comment, Blog blog)
          Create a new event indicating a Comment was added in the system.