Drive API v2 (revision 47)



Uses of Class
com.google.api.services.drive.model.Comment

Packages that use Comment
com.google.api.services.drive   
com.google.api.services.drive.model   
 

Uses of Comment in com.google.api.services.drive
 

Methods in com.google.api.services.drive with parameters of type Comment
 Drive.Comments.Insert Drive.Comments.insert(java.lang.String fileId, Comment content)
          Creates a new comment on the given file.
 Drive.Comments.Patch Drive.Comments.patch(java.lang.String fileId, java.lang.String commentId, Comment content)
          Updates an existing comment.
 Drive.Comments.Update Drive.Comments.update(java.lang.String fileId, java.lang.String commentId, Comment content)
          Updates an existing comment.
 

Uses of Comment in com.google.api.services.drive.model
 

Methods in com.google.api.services.drive.model that return Comment
 Comment Comment.setAnchor(java.lang.String anchor)
          A region of the document represented as a JSON string.
 Comment Comment.setAuthor(User author)
          The user who wrote this comment.
 Comment Comment.setCommentId(java.lang.String commentId)
          The ID of the comment.
 Comment Comment.setContent(java.lang.String content)
          The plain text content used to create this comment.
 Comment Comment.setContext(Comment.Context context)
          The context of the file which is being commented on.
 Comment Comment.setCreatedDate(DateTime createdDate)
          The date when this comment was first created.
 Comment Comment.setDeleted(java.lang.Boolean deleted)
          Whether this comment has been deleted.
 Comment Comment.setFileId(java.lang.String fileId)
          The file which this comment is addressing.
 Comment Comment.setFileTitle(java.lang.String fileTitle)
          The title of the file which this comment is addressing.
 Comment Comment.setHtmlContent(java.lang.String htmlContent)
          HTML formatted content for this comment.
 Comment Comment.setKind(java.lang.String kind)
          This is always drive#comment.
 Comment Comment.setModifiedDate(DateTime modifiedDate)
          The date when this comment or any of its replies were last modified.
 Comment Comment.setReplies(java.util.List<CommentReply> replies)
          Replies to this post.
 Comment Comment.setSelfLink(java.lang.String selfLink)
          A link back to this comment.
 Comment Comment.setStatus(java.lang.String status)
          The status of this comment.
 

Methods in com.google.api.services.drive.model that return types with arguments of type Comment
 java.util.List<Comment> CommentList.getItems()
          List of comments.
 

Method parameters in com.google.api.services.drive.model with type arguments of type Comment
 CommentList CommentList.setItems(java.util.List<Comment> items)
          List of comments.