Toggle navigation
Home
org.languagetool.rules.RuleMatch to java.util.List<org.languagetool.rules.RuleMatch>
No. of Instances - 3
No. of Commits - 3
No. of Projects - {'languagetool'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Jdk
Mapping:
Other
ruleMatches
to
ruleMatches
ruleMatches
to
ruleMatches
Add or Remove Method invocation
rule.match(lt.getAnalyzedSentence("This is a test sentence."))
to
lt.check("This is a test sentence.")
matches[0].getFromPos()
to
matches.get(0).getFromPos()
matches[0].getToPos()
to
matches.get(0).getToPos()
rule.match(lt.getAnalyzedSentence("\n This is a test sentence."))
to
lt.check("\n This is a test sentence.")
matches[0].getFromPos()
to
matches.get(0).getFromPos()
matches[0].getToPos()
to
matches.get(0).getToPos()
rule.match(lt.getAnalyzedSentence("This is a test sentence."))
to
lt.check("This is a test sentence.")
matches[0].getFromPos()
to
matches.get(0).getFromPos()
matches[0].getToPos()
to
matches.get(0).getToPos()
rule.match(lt.getAnalyzedSentence("This is a test sentence."))
to
lt.check("This is a test sentence.")
matches[0].getFromPos()
to
matches.get(0).getFromPos()
matches[0].getToPos()
to
matches.get(0).getToPos()
matches[1].getFromPos()
to
matches.get(1).getFromPos()
matches[1].getToPos()
to
matches.get(1).getToPos()
matches[2].getFromPos()
to
matches.get(2).getFromPos()
matches[2].getToPos()
to
matches.get(2).getToPos()
rule.match(lt.getAnalyzedSentence("\t\t\t \t\t\t\t "))
to
lt.check("\t\t\t \t\t\t\t ")
rule.match(lt.getAnalyzedSentence("This \u00A0is a test sentence."))
to
lt.check("This \u00A0is a test sentence.")
matches[0].getFromPos()
to
matches.get(0).getFromPos()
matches[0].getToPos()
to
matches.get(0).getToPos()