Examples of ApiRandomPagesResult


Examples of org.wikipediacleaner.api.request.ApiRandomPagesResult

   * @see <a href="http://www.mediawiki.org/wiki/API:Random">API:Random</a>
   */
  public List<Page> getRandomPages(
      EnumWikipedia wiki, int count,
      boolean redirects) throws APIException {
    ApiRandomPagesResult result = new ApiXmlRandomPagesResult(wiki, httpClient);
    ApiRandomPagesRequest request = new ApiRandomPagesRequest(wiki, result);
    return request.loadRandomList(count, redirects);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.