Uses of Interface
com.atlassian.jira.issue.comments.Comment

Packages that use Comment
com.atlassian.jira.action.issue   
com.atlassian.jira.bc.issue.comment   
com.atlassian.jira.event.issue   
com.atlassian.jira.issue.comments   
com.atlassian.jira.issue.comments.util   
com.atlassian.jira.issue.index   
com.atlassian.jira.issue.renderers   
com.atlassian.jira.issue.tabpanels   
com.atlassian.jira.issue.util   
com.atlassian.jira.web.action.issue   
 

Uses of Comment in com.atlassian.jira.action.issue
 

Methods in com.atlassian.jira.action.issue with parameters of type Comment
protected  void AbstractIssueUpdateAction.doUpdate(java.lang.Long eventTypeId, Comment comment)
          This method 'completes' the update of an issue entity.
protected  void AbstractIssueUpdateAction.doUpdate(java.lang.Long eventTypeId, Comment comment, java.util.Map params)
          This method 'completes' the update of an issue entity.
 

Uses of Comment in com.atlassian.jira.bc.issue.comment
 

Methods in com.atlassian.jira.bc.issue.comment that return Comment
 Comment DefaultCommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, boolean dispatchEvent, ErrorCollection errorCollection)
           
 Comment CommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, boolean dispatchEvent, ErrorCollection errorCollection)
          Creates and persists a Comment on the given Issue set with current date and time, visible to all - no group level or role level restriction.
 Comment DefaultCommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, boolean dispatchEvent, ErrorCollection errorCollection)
           
 Comment CommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, boolean dispatchEvent, ErrorCollection errorCollection)
          Creates and persists a Comment on the given Issue set with current date and time.
 Comment DefaultCommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, boolean dispatchEvent, ErrorCollection errorCollection)
           
 Comment CommentService.create(com.opensymphony.user.User user, Issue issue, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, boolean dispatchEvent, ErrorCollection errorCollection)
          Creates and persists a Comment on the given Issue.
 Comment DefaultCommentService.getCommentById(com.opensymphony.user.User user, java.lang.Long commentId, ErrorCollection errorCollection)
           
 Comment CommentService.getCommentById(com.opensymphony.user.User user, java.lang.Long commentId, ErrorCollection errorCollection)
          Will return a comment for the passed in commentId.
 

Methods in com.atlassian.jira.bc.issue.comment that return types with arguments of type Comment
 java.util.List<Comment> DefaultCommentService.getCommentsForUser(com.opensymphony.user.User currentUser, Issue issue, ErrorCollection errorCollection)
           
 java.util.List<Comment> CommentService.getCommentsForUser(com.opensymphony.user.User currentUser, Issue issue, ErrorCollection errorCollection)
          Will return a list of Comments for the given user
 

Methods in com.atlassian.jira.bc.issue.comment with parameters of type Comment
 void DefaultCommentService.delete(JiraServiceContext jiraServiceContext, Comment comment, boolean dispatchEvent)
           
 void CommentService.delete(JiraServiceContext jiraServiceContext, Comment comment, boolean dispatchEvent)
          Deletes a comment and updates the issue's change history and updated date.
 boolean DefaultCommentService.hasPermissionToEdit(com.opensymphony.user.User user, Comment comment, ErrorCollection errorCollection)
           
 boolean CommentService.hasPermissionToEdit(com.opensymphony.user.User user, Comment comment, ErrorCollection errorCollection)
          Determine whether the current user has the permission to edit the comment.
protected  boolean DefaultCommentService.hasVisibility(JiraServiceContext jiraServiceContext, Comment comment)
           
 

Uses of Comment in com.atlassian.jira.event.issue
 

Methods in com.atlassian.jira.event.issue that return Comment
 Comment IssueEvent.getComment()
           
 

Methods in com.atlassian.jira.event.issue with parameters of type Comment
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params, boolean sendMail, boolean subtasksUpdated)
           
 

Constructors in com.atlassian.jira.event.issue with parameters of type Comment
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId)
          Create a new IssueEvent with a given list of parameters.
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId, boolean sendMail)
          Create a new IssueEvent with a given list of parameters.
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId, boolean sendMail, boolean subtasksUpdated)
           
 

Uses of Comment in com.atlassian.jira.issue.comments
 

Subinterfaces of Comment in com.atlassian.jira.issue.comments
 interface MutableComment
          Represents a comment's in JIRA.
 

Classes in com.atlassian.jira.issue.comments that implement Comment
 class CommentImpl
          Represents a comment on an issue by a user.
 

Fields in com.atlassian.jira.issue.comments with type parameters of type Comment
static java.util.Comparator<Comment> CommentComparator.COMPARATOR
          Comparator for sorting comments based on creation date.
 

Methods in com.atlassian.jira.issue.comments that return Comment
 Comment CommentManager.convertToComment(org.ofbiz.core.entity.GenericValue commentGV)
          This is a convenience method that can be used to convert a GenericValue representation of a comment to a comment object.
 Comment DefaultCommentManager.convertToComment(org.ofbiz.core.entity.GenericValue gv)
           
 Comment CommentManager.create(Issue issue, java.lang.String author, java.lang.String body, boolean dispatchEvent)
          Creates a comment and associates it with the given issue.
 Comment DefaultCommentManager.create(Issue issue, java.lang.String author, java.lang.String body, boolean dispatchEvent)
           
 Comment CommentManager.create(Issue issue, java.lang.String author, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, boolean dispatchEvent)
          Creates a comment and associates it with the given issue.
 Comment DefaultCommentManager.create(Issue issue, java.lang.String author, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, boolean dispatchEvent)
           
 Comment CommentManager.create(Issue issue, java.lang.String author, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, boolean dispatchEvent)
          Creates a comment and associates it with the given issue.
 Comment DefaultCommentManager.create(Issue issue, java.lang.String author, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, boolean dispatchEvent)
           
 Comment CommentManager.create(Issue issue, java.lang.String author, java.lang.String updateAuthor, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, java.util.Date updated, boolean dispatchEvent)
          Creates a comment and associates it with the given issue.
 Comment DefaultCommentManager.create(Issue issue, java.lang.String author, java.lang.String updateAuthor, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, java.util.Date updated, boolean dispatchEvent)
           
 Comment CommentManager.create(Issue issue, java.lang.String author, java.lang.String updateAuthor, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, java.util.Date updated, boolean dispatchEvent, boolean tweakIssueUpdateDate)
          Creates a comment and associates it with the given issue.
 Comment DefaultCommentManager.create(Issue issue, java.lang.String author, java.lang.String updateAuthor, java.lang.String body, java.lang.String groupLevel, java.lang.Long roleLevelId, java.util.Date created, java.util.Date updated, boolean dispatchEvent, boolean tweakIssueUpdateDate)
           
 Comment CommentManager.getCommentById(java.lang.Long commentId)
          Will return a comment for the passed in commentId.
 Comment DefaultCommentManager.getCommentById(java.lang.Long commentId)
           
 

Methods in com.atlassian.jira.issue.comments that return types with arguments of type Comment
 java.util.List<Comment> CommentManager.getComments(Issue issue)
          This will return all comments for a given issue.
 java.util.List<Comment> DefaultCommentManager.getComments(Issue issue)
           
 java.util.List<Comment> CommentManager.getCommentsForUser(Issue issue, com.opensymphony.user.User user)
          Retrieves all Comments on the given Issue that the given User has permission to see.
 java.util.List<Comment> DefaultCommentManager.getCommentsForUser(Issue issue, com.opensymphony.user.User user)
           
 

Methods in com.atlassian.jira.issue.comments with parameters of type Comment
 int CommentComparator.compare(Comment o1, Comment o2)
           
 ChangeItemBean CommentManager.delete(Comment comment)
          Deletes the specified comment.
 ChangeItemBean DefaultCommentManager.delete(Comment comment)
           
 boolean CommentPermissionManager.hasBrowsePermission(Comment comment, com.opensymphony.user.User user)
          Return true if the user can see the comment.
 boolean DefaultCommentPermissionManager.hasBrowsePermission(Comment comment, com.opensymphony.user.User user)
          Determines whether the user can see given comment.
 boolean CommentPermissionManager.hasEditPermission(Comment comment, com.opensymphony.user.User user)
          Determines whether the given user has permission to edit the given comment.
 boolean DefaultCommentPermissionManager.hasEditPermission(Comment comment, com.opensymphony.user.User user)
          Determines whether the user can edit given comment.
 boolean CommentManager.isUserCommentAuthor(com.opensymphony.user.User user, Comment comment)
          Returns true if the given user is the author of the given comment.
 boolean CommentPermissionManager.isUserCommentAuthor(com.opensymphony.user.User user, Comment comment)
          Returns true if the given user is the author of the given comment.
 boolean DefaultCommentManager.isUserCommentAuthor(com.opensymphony.user.User user, Comment comment)
           
 boolean DefaultCommentPermissionManager.isUserCommentAuthor(com.opensymphony.user.User user, Comment comment)
           
 void CommentManager.update(Comment comment, boolean dispatchEvent)
          Persists the updated comment.
 void DefaultCommentManager.update(Comment comment, boolean dispatchEvent)
           
 

Uses of Comment in com.atlassian.jira.issue.comments.util
 

Methods in com.atlassian.jira.issue.comments.util that return Comment
 Comment LuceneCommentIterator.next()
           
 Comment DatabaseCommentIterator.next()
           
 Comment LuceneCommentIterator.nextComment()
           
 Comment CommentIterator.nextComment()
           
 Comment DatabaseCommentIterator.nextComment()
           
 

Methods in com.atlassian.jira.issue.comments.util with parameters of type Comment
protected abstract  boolean DatabaseCommentIterator.hasReadPermissionForAction(Comment comment, Issue issue, com.opensymphony.user.User user)
           
 

Uses of Comment in com.atlassian.jira.issue.index
 

Methods in com.atlassian.jira.issue.index that return types with arguments of type Comment
 java.util.List<Comment> DefaultCommentRetriever.get(Issue issue)
           
 

Methods in com.atlassian.jira.issue.index with parameters of type Comment
static org.apache.lucene.document.Document CommentDocument.getDocument(Comment comment, Issue issue)
           
 

Uses of Comment in com.atlassian.jira.issue.renderers
 

Constructors in com.atlassian.jira.issue.renderers with parameters of type Comment
CommentFieldRenderContext(Comment comment)
           
 

Uses of Comment in com.atlassian.jira.issue.tabpanels
 

Methods in com.atlassian.jira.issue.tabpanels that return Comment
 Comment CommentAction.getComment()
          Returns the comment
 

Constructors in com.atlassian.jira.issue.tabpanels with parameters of type Comment
CommentAction(IssueTabPanelModuleDescriptor descriptor, Comment comment, boolean canEditComment, boolean canDeleteComment, RendererManager rendererManager, FieldLayoutManager fieldLayoutManager)
           
 

Uses of Comment in com.atlassian.jira.issue.util
 

Methods in com.atlassian.jira.issue.util that return Comment
 Comment DefaultIssueChangeHolder.getComment()
           
 Comment IssueChangeHolder.getComment()
          Get the comment associated with this group of changes.
 Comment IssueUpdateBean.getComment()
           
 

Methods in com.atlassian.jira.issue.util with parameters of type Comment
 void DefaultIssueChangeHolder.setComment(Comment comment)
           
 void IssueChangeHolder.setComment(Comment comment)
          Set the comment associated with this change.
 void IssueUpdateBean.setComment(Comment comment)
           
 

Uses of Comment in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that return Comment
protected  Comment AbstractCommentableIssue.createComment(MutableIssue commentedIssue)
           
 Comment DeleteComment.getCommentObject()
           
 



Copyright © 2002-2010 Atlassian. All Rights Reserved.