for (Rule rule : rules) {
final List<String> tokens = extractor.getSuggestionTokens(rule, lang);
tokenCount += tokens.size();
for (String token : tokens) {
final AnalyzedSentence sentence = languageTool.getAnalyzedSentence(token);
final RuleMatch[] matches = spellcheckRule.match(sentence);
if (matches.length > 0) {
suggestionTokens.add(token);
} else {
//System.out.println("No error matches for " + lang + ": " + token);
noErrorCount++;