Uses of Class
org.blojsom.blog.BlogComment

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

Uses of BlogComment in org.blojsom.blog
 

Subclasses of BlogComment in org.blojsom.blog
 class FileBackedBlogComment
          FileBackedBlogComment
 

Methods in org.blojsom.blog that return BlogComment
protected  BlogComment FileBackedBlogEntry.loadComment(java.io.File commentFile, java.lang.String blogFileEncoding, BlogUser blogUser)
          Load a comment for this blog entry from disk Comments must always have the form:
author
author e-mail address
author url
everything else after is the comment
 BlogComment[] BlogEntry.getCommentsAsArray()
          Get the comments as an array of BlogComment objects
 

Uses of BlogComment in org.blojsom.fetcher
 

Methods in org.blojsom.fetcher that return BlogComment
 BlogComment StandardFetcher.newBlogComment()
          Return a new BlogComment instance
 BlogComment BlojsomFetcher.newBlogComment()
          Return a new BlogComment instance
 

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

Fields in org.blojsom.plugin.comment.event declared as BlogComment
protected  BlogComment CommentEvent._blogComment
           
 

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

Constructors in org.blojsom.plugin.comment.event with parameters of type BlogComment
CommentEvent(java.lang.Object source, java.util.Date timestamp, BlogComment blogComment, BlogUser blogUser)
          Create a new event indicating something happened with a BlogComment in the system.
CommentDeletedEvent(java.lang.Object source, java.util.Date timestamp, BlogComment blogComment, BlogUser blogUser)
          Create a new event indicating a BlogComment has been deleted from the system.
CommentApprovedEvent(java.lang.Object source, java.util.Date timestamp, BlogComment blogComment, BlogUser blogUser)
          Create a new event indicating a BlogComment has been approved in the system.
CommentAddedEvent(java.lang.Object source, java.util.Date timestamp, BlogComment blogComment, BlogUser blogUser)
          Create a new event indicating an event where a BlogComment has been added to the system.