Package org.wikipediacleaner.api.check.algorithm

Examples of org.wikipediacleaner.api.check.algorithm.CheckErrorAlgorithmComparator


        return;
      }

      // Creates a string representing the current selection
      StringBuilder selection = new StringBuilder();
      Collections.sort(selectedAlgorithms, new CheckErrorAlgorithmComparator());
      for (CheckErrorAlgorithm algorithm : selectedAlgorithms) {
        if (selection.length() > 0) {
          selection.append(",");
        }
        selection.append(algorithm.getErrorNumber());
View Full Code Here

TOP

Related Classes of org.wikipediacleaner.api.check.algorithm.CheckErrorAlgorithmComparator

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.