Package org.wikipediacleaner.api.check

Examples of org.wikipediacleaner.api.check.CheckWiki.check()


        }
      }
    }
    if ((error != null) && (errorFound == false)) {
      CheckWiki checkWiki = APIFactory.getCheckWiki();
      List<CheckWikiDetection> detections = checkWiki.check(page);
      int answer = JOptionPane.NO_OPTION;
      if (detections != null) {
        boolean errorDetected = false;
        for (CheckWikiDetection detection : detections) {
          if (detection.getErrorNumber() == error.getErrorNumber()) {
View Full Code Here


   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  public void actionPerformed(ActionEvent e) {
    CheckWiki checkWiki = APIFactory.getCheckWiki();
    Page page = DataManager.getPage(wiki, title, null, null, null);
    List<CheckWikiDetection> detections = checkWiki.check(page);
    if (detections == null) {
      Utilities.displayWarning(
          parent,
          GT._("Unable to retrieve analysis from CheckWiki."));
      return;
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.