Uses of Class
org.gitlab4j.api.models.Comment
Package | Description |
---|---|
org.gitlab4j.api |
-
Uses of Comment in org.gitlab4j.api
Methods in org.gitlab4j.api that return Comment Modifier and Type Method Description Comment
CommitsApi. addComment(Object projectIdOrPath, String sha, String note)
Add a comment to a commit.Comment
CommitsApi. addComment(Object projectIdOrPath, String sha, String note, String path, Integer line, Constants.LineType lineType)
Add a comment to a commit.Methods in org.gitlab4j.api that return types with arguments of type Comment Modifier and Type Method Description List<Comment>
CommitsApi. getComments(Object projectIdOrPath, String sha)
Get the comments of a commit in a project.Pager<Comment>
CommitsApi. getComments(Object projectIdOrPath, String sha, int itemsPerPage)
Get a Pager of the comments of a commit in a project.Stream<Comment>
CommitsApi. getCommentsStream(Object projectIdOrPath, String sha)
Get the comments of a commit in a project as a Stream.