Package com.google.gerrit.server.comment
Class CommentContextKey.Builder
- java.lang.Object
-
- com.google.gerrit.server.comment.CommentContextKey.Builder
-
- Enclosing class:
- CommentContextKey
public abstract static class CommentContextKey.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CommentContextKey
build()
abstract CommentContextKey.Builder
changeId(Change.Id changeId)
abstract CommentContextKey.Builder
contextPadding(Integer numLines)
abstract CommentContextKey.Builder
id(String id)
abstract CommentContextKey.Builder
patchset(Integer patchset)
abstract CommentContextKey.Builder
path(String path)
abstract CommentContextKey.Builder
project(Project.NameKey nameKey)
-
-
-
Method Detail
-
project
public abstract CommentContextKey.Builder project(Project.NameKey nameKey)
-
changeId
public abstract CommentContextKey.Builder changeId(Change.Id changeId)
-
id
public abstract CommentContextKey.Builder id(String id)
-
path
public abstract CommentContextKey.Builder path(String path)
-
patchset
public abstract CommentContextKey.Builder patchset(Integer patchset)
-
contextPadding
public abstract CommentContextKey.Builder contextPadding(Integer numLines)
-
build
public abstract CommentContextKey build()
-
-