Package org.wikipediacleaner.api.request

Examples of org.wikipediacleaner.api.request.ApiRandomPagesRequest


   */
  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

Related Classes of org.wikipediacleaner.api.request.ApiRandomPagesRequest

Copyright © 2018 www.massapicom. 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.