Examples of retrieveInfo()


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

    List<Page> tmpPages = api.getQueryPages(wiki, EnumQueryPage.WANTED_TEMPLATES);
    if (tmpPages == null) {
      return;
    }
    setText(GT._("Checking that the templates are still missing"));
    api.retrieveInfo(wiki, tmpPages);
    List<Page> tmpPages2 = new ArrayList<Page>();
    for (Page tmpPage : tmpPages) {
      Boolean exists = tmpPage.isExisting();
      if (!Boolean.TRUE.equals(exists)) {
        tmpPages2.add(tmpPage);
View Full Code Here

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

      }

      // Check local page
      if (toWiki != null) {
        Page page = DataManager.getPage(toWiki, title, null, null, null);
        api.retrieveInfo(toWiki, Collections.singletonList(page));
        if (message.length() > 0) {
          message.append("\n");
        }
        if (Boolean.FALSE.equals(page.isExisting())) {
          message.append(GT._(
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.