Uses of Class
ink.icoding.github4j.model.Comment
Packages that use Comment
-
Uses of Comment in ink.icoding.github4j.client
Methods in ink.icoding.github4j.client that return types with arguments of type CommentModifier and TypeMethodDescriptionGistsClient.createComment(String gistId, CreateCommentRequest request) 为指定 Gist 创建评论。IssuesClient.createComment(String owner, String repo, int issueNumber, CreateCommentRequest request) 为指定 Issue 创建评论。PullRequestsClient.createReviewComment(String owner, String repo, int pullNumber, Map<String, Object> body) 为指定 Pull Request 创建 Review 评论。GistsClient.getComment(String gistId, long commentId) 获取指定 Gist 的单条评论。IssuesClient.getComment(String owner, String repo, long commentId) 获取单条评论的详细信息。GistsClient.listComments(String gistId, PageOptions options) 列出指定 Gist 的评论。IssuesClient.listComments(String owner, String repo, int issueNumber, PageOptions options) 列出指定 Issue 的评论。IssuesClient.listCommentsForRepo(String owner, String repo, ListIssueCommentsOptions options) 列出指定仓库所有 Issue 的评论。PullRequestsClient.listReviewComments(String owner, String repo, int pullNumber, ListReviewCommentsOptions options) 列出指定 Pull Request 的 Review 评论。PullRequestsClient.listReviewCommentsForRepo(String owner, String repo, ListReviewCommentsOptions options) 列出仓库中所有 Pull Request 的 Review 评论。GistsClient.updateComment(String gistId, long commentId, UpdateCommentRequest request) 更新指定 Gist 的评论。IssuesClient.updateComment(String owner, String repo, long commentId, UpdateCommentRequest request) 更新指定评论。PullRequestsClient.updateReviewComment(String owner, String repo, long commentId, Map<String, String> body) 更新指定的 Pull Request Review 评论。