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 CommentContextKeybuild()abstract CommentContextKey.BuilderchangeId(Change.Id changeId)abstract CommentContextKey.BuildercontextPadding(Integer numLines)abstract CommentContextKey.Builderid(String id)abstract CommentContextKey.Builderpatchset(Integer patchset)abstract CommentContextKey.Builderpath(String path)abstract CommentContextKey.Builderproject(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()
-
-