mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-16 15:51:16 +00:00
Add JavaDocs
Do using IntelliJ JavaDocs plugin. Better to have something than nothing.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user