mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-20 15:50:29 +00:00
22 lines
624 B
Java
22 lines
624 B
Java
package org.kohsuke.github;
|
|
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|
|
|
/**
|
|
* Represents the result of a search
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
abstract class SearchResult<T> {
|
|
@SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "Field comes from JSON deserialization")
|
|
int total_count;
|
|
|
|
@SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "Field comes from JSON deserialization")
|
|
boolean incomplete_results;
|
|
|
|
/**
|
|
* Wraps up the retrieved object and return them. Only called once.
|
|
*/
|
|
/*package*/ abstract T[] getItems(GitHub root);
|
|
}
|