|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Comment | |
|---|---|
| com.randomcoder.article | Article management classes. |
| com.randomcoder.article.comment | Article commenting classes. |
| com.randomcoder.article.moderation | Article moderation classes. |
| Uses of Comment in com.randomcoder.article |
|---|
| Methods in com.randomcoder.article that return types with arguments of type Comment | |
|---|---|
List<Comment> |
Article.getComments()
Gets the list of comments for this article. |
| Method parameters in com.randomcoder.article with type arguments of type Comment | |
|---|---|
void |
ArticleBusinessImpl.createComment(Producer<Comment> producer,
Long articleId,
String userName,
String referrer,
String ipAddress,
String userAgent)
|
void |
ArticleBusiness.createComment(Producer<Comment> comment,
Long articleId,
String userName,
String referrer,
String ipAddress,
String userAgent)
Creates a new comment. |
void |
Article.setComments(List<Comment> comments)
Sets the list of comments for this article. |
| Uses of Comment in com.randomcoder.article.comment |
|---|
| Methods in com.randomcoder.article.comment that return Comment | |
|---|---|
Comment |
CommentDecorator.getComment()
Gets the comment wrapped by this decorator. |
| Methods in com.randomcoder.article.comment that return types with arguments of type Comment | |
|---|---|
Iterator<Comment> |
CommentDao.iterateForModerationInRange(int start,
int limit)
Iterates through all comments which are available to be moderated. |
| Methods in com.randomcoder.article.comment with parameters of type Comment | |
|---|---|
void |
CommentCommand.produce(Comment comment)
Populates a comment object with data. |
| Constructors in com.randomcoder.article.comment with parameters of type Comment | |
|---|---|
CommentDecorator(Comment comment,
ContentFilter filter)
Creates a new comment decorator using the given comment and filter. |
|
| Uses of Comment in com.randomcoder.article.moderation |
|---|
| Methods in com.randomcoder.article.moderation with parameters of type Comment | |
|---|---|
void |
Moderator.markAsHam(Comment comment)
Marks the given comment as ham (non-spam). |
void |
AkismetModerator.markAsHam(Comment comment)
|
void |
Moderator.markAsSpam(Comment comment)
Marks the given comment as spam. |
void |
AkismetModerator.markAsSpam(Comment comment)
|
boolean |
Moderator.validate(Comment comment)
Validates the given comment as spam or ham. |
boolean |
AkismetModerator.validate(Comment comment)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||