Examples of PageListWorker


Examples of org.wikipediacleaner.gui.swing.pagelist.PageListWorker

  public void actionAllDab() {
    EnumWikipedia wikipedia = getWikipedia();
    if (wikipedia == null) {
      return;
    }
    new PageListWorker(
        wikipedia, this, null,
        null, PageListWorker.Mode.ALL_DAB_PAGES, false,
        GT._("All disambiguations pages")).start();
  }
View Full Code Here

Examples of org.wikipediacleaner.gui.swing.pagelist.PageListWorker

    }
    PageListWorker.Mode mode = PageListWorker.Mode.valueOf(name);
    if (mode == null) {
      return;
    }
    new PageListWorker(
        wiki, this, null, null,
        mode, false, mode.getTitle()).start();
  }
View Full Code Here

Examples of org.wikipediacleaner.gui.swing.pagelist.PageListWorker

    List<String> pageNames = config.getStringList(getWikipedia(), Configuration.ARRAY_WATCH_PAGES);
    EnumWikipedia wikipedia = getWikipedia();
    if (wikipedia == null) {
      return;
    }
    new PageListWorker(
        wikipedia, this, null,
        pageNames, PageListWorker.Mode.DIRECT, true,
        GT._("Local Watchlist")).start();
  }
View Full Code Here

Examples of org.wikipediacleaner.gui.swing.pagelist.PageListWorker

  public void actionWatchlist() {
    EnumWikipedia wikipedia = getWikipedia();
    if (wikipedia == null) {
      return;
    }
    new PageListWorker(
        wikipedia, this, null,
        null, PageListWorker.Mode.WATCH_LIST, true,
        GT._("Watch list")).start();
  }
View Full Code Here

Examples of org.wikipediacleaner.gui.swing.pagelist.PageListWorker

        for (int i = 0; i < pages.size(); i++) {
          pageNames.add(pages.get(i).getTitle());
        }
      }
      Collections.sort(pageNames);
      new PageListWorker(
          getWikipedia(), this, null, pageNames,
          PageListWorker.Mode.DIRECT, false,
          GT._("Random pages")).start();
    } catch (APIException e) {
      displayError(e);
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.