Package org.wikipediacleaner.api

Examples of org.wikipediacleaner.api.API.retrieveRawWatchlist()


   * @param pages List of pages in the watch list.
   * @throws APIException
   */
  private void constructWatchList(List<Page> pages) throws APIException {
    final API api = APIFactory.getAPI();
    List<Page> tmpPages = api.retrieveRawWatchlist(getWikipedia());
    if (tmpPages != null) {
      pages.addAll(tmpPages);
    }
  }
}
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.