Package com.google.gerrit.server.change
Class AccountPatchReviewStore.PatchSetWithReviewedFiles
- java.lang.Object
-
- com.google.gerrit.server.change.AccountPatchReviewStore.PatchSetWithReviewedFiles
-
- Enclosing interface:
- AccountPatchReviewStore
public abstract static class AccountPatchReviewStore.PatchSetWithReviewedFiles extends Object
Represents patch set id with reviewed files.
-
-
Constructor Summary
Constructors Constructor Description PatchSetWithReviewedFiles()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static AccountPatchReviewStore.PatchSetWithReviewedFiles
create(PatchSet.Id id, com.google.common.collect.ImmutableSet<String> files)
abstract com.google.common.collect.ImmutableSet<String>
files()
abstract PatchSet.Id
patchSetId()
-
-
-
Method Detail
-
patchSetId
public abstract PatchSet.Id patchSetId()
-
files
public abstract com.google.common.collect.ImmutableSet<String> files()
-
create
public static AccountPatchReviewStore.PatchSetWithReviewedFiles create(PatchSet.Id id, com.google.common.collect.ImmutableSet<String> files)
-
-