Package com.google.gerrit.server.change
Class CommentThread<T extends Comment>
- java.lang.Object
-
- com.google.gerrit.server.change.CommentThread<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CommentThread.Builder<T extends Comment>
-
Constructor Summary
Constructors Constructor Description CommentThread()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static <T extends Comment>
CommentThread.Builder<T>builder()
abstract com.google.common.collect.ImmutableList<T>
comments()
Comments in the thread in exactly the order they appear in the thread.boolean
unresolved()
Whether the whole thread is considered as unresolved.
-
-
-
Method Detail
-
comments
public abstract com.google.common.collect.ImmutableList<T> comments()
Comments in the thread in exactly the order they appear in the thread.
-
unresolved
public boolean unresolved()
Whether the whole thread is considered as unresolved.
-
builder
public static <T extends Comment> CommentThread.Builder<T> builder()
-
-