All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.github.SearchResult Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

// TODO: Auto-generated Javadoc
/**
 * Represents the result of a search.
 *
 * @author Kohsuke Kawaguchi
 * @param 
 *            the generic type
 */
abstract class SearchResult {

    /** The total count. */
    int total_count;

    /** The incomplete results. */
    boolean incomplete_results;

    /**
     * Wraps up the retrieved object and return them. Only called once.
     *
     * @param root
     *            the root
     * @return the items
     */
    abstract T[] getItems(GitHub root);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy