Package org.wikipediacleaner.api.constants

Examples of org.wikipediacleaner.api.constants.Contributions


          "A comment is required for sending the page."));
      return;
    }

    // Count contributions
    Contributions contributions = new Contributions(getWiki());
    contributions.increasePages(1);
    for (CheckErrorAlgorithm algorithm : errorsFixed) {
      contributions.increaseCheckWikiError(algorithm.getErrorNumber(), 1);
    }

    // Check for errors fixed about ISBN
    boolean updateISBNWarning = false;
    boolean createISBNWarning = false;
View Full Code Here


        return text;
      }
      return GT._("Translation");
    }

    contributions = new Contributions(getWikipedia());
    contributions.increasePages(1);

    // Comment for fixed links to disambiguation pages
    List<String> dabLinks = new ArrayList<String>();
    StringBuilder comment = new StringBuilder();
View Full Code Here

TOP

Related Classes of org.wikipediacleaner.api.constants.Contributions

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.