Class CommentInfo
- java.lang.Object
-
- com.google.gerrit.extensions.client.Comment
-
- com.google.gerrit.extensions.common.CommentInfo
-
- Direct Known Subclasses:
RobotCommentInfo
public class CommentInfo extends Comment
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gerrit.extensions.client.Comment
Comment.Range
-
-
Field Summary
Fields Modifier and Type Field Description AccountInfo
author
String
changeMessageId
List<ContextLineInfo>
contextLines
A list ofContextLineInfo
, that is, a list of pairs of {line_num, line_text} of the actual source file content surrounding and including the lines where the comment was written.String
sourceContentType
Mime type of the underlying source file.String
tag
Boolean
unresolved
-
Constructor Summary
Constructors Constructor Description CommentInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
-
-
-
Field Detail
-
author
public AccountInfo author
-
tag
public String tag
-
changeMessageId
public String changeMessageId
-
unresolved
public Boolean unresolved
-
contextLines
public List<ContextLineInfo> contextLines
A list ofContextLineInfo
, that is, a list of pairs of {line_num, line_text} of the actual source file content surrounding and including the lines where the comment was written.
-
sourceContentType
public String sourceContentType
Mime type of the underlying source file. Only available if context lines are requested.
-
-