use of com.google.gerrit.server.data.PatchSetCommentAttribute in project gerrit by GerritCodeReview.
the class EventFactory method asPatchSetLineAttribute.
public PatchSetCommentAttribute asPatchSetLineAttribute(Comment c) {
PatchSetCommentAttribute a = new PatchSetCommentAttribute();
a.reviewer = asAccountAttribute(c.author.getId());
a.file = c.key.filename;
a.line = c.lineNbr;
a.message = c.message;
return a;
}
use of com.google.gerrit.server.data.PatchSetCommentAttribute in project gerrit by GerritCodeReview.
the class EventFactory method asPatchSetLineAttribute.
public PatchSetCommentAttribute asPatchSetLineAttribute(HumanComment c) {
PatchSetCommentAttribute a = new PatchSetCommentAttribute();
a.reviewer = asAccountAttribute(c.author.getId());
a.file = c.key.filename;
a.line = c.lineNbr;
a.message = c.message;
return a;
}
Aggregations