Add JavaDocs

Do using IntelliJ JavaDocs plugin. Better to have something than nothing.
This commit is contained in:
Liam Newman
2019-11-14 13:24:28 -08:00
parent f6a01551fd
commit 757b9b2118
125 changed files with 7379 additions and 251 deletions

View File

@@ -3,6 +3,8 @@ package org.kohsuke.github;
/**
* Used to specify filters, sort order, etc for listing items in a collection.
*
* @param <T>
* the type parameter
* @author Kohsuke Kawaguchi
*/
public abstract class GHQueryBuilder<T> {
@@ -16,6 +18,8 @@ public abstract class GHQueryBuilder<T> {
/**
* Start listing items by using the settings built up on this object.
*
* @return the paged iterable
*/
public abstract PagedIterable<T> list();
}