Examples of HunspellNoSuggestionRule


Examples of org.languagetool.rules.spelling.hunspell.HunspellNoSuggestionRule

  public List<Rule> getRelevantRules(ResourceBundle messages) {
    return Arrays.asList(
            new CommaWhitespaceRule(messages),
            new DoublePunctuationRule(messages),
            new GenericUnpairedBracketsRule(messages, this)// correction for genitive apostrophes eg. "Lis' hund" made in UnpairedQuotesBracketsRule
            new HunspellNoSuggestionRule(messages, this),
            new UppercaseSentenceStartRule(messages, this)// abbreviation exceptions, done in DanishSentenceTokenizer
            // "WORD_REPEAT_RULE" implemented in grammar.xml
            new MultipleWhitespaceRule(messages, this)
    );
  }
View Full Code Here

Examples of org.languagetool.rules.spelling.hunspell.HunspellNoSuggestionRule

  public List<Rule> getRelevantRules(ResourceBundle messages) {
    return Arrays.asList(
            new CommaWhitespaceRule(messages),
            new DoublePunctuationRule(messages),
            new GenericUnpairedBracketsRule(messages, this),
            new HunspellNoSuggestionRule(messages, this),
            new UppercaseSentenceStartRule(messages, this),
            new WordRepeatRule(messages, this),
            new MultipleWhitespaceRule(messages, this),
            new SentenceWhitespaceRule(messages)
    );
View Full Code Here

Examples of org.languagetool.rules.spelling.hunspell.HunspellNoSuggestionRule

  public List<Rule> getRelevantRules(ResourceBundle messages) throws IOException {
    return Arrays.asList(
            new CommaWhitespaceRule(messages),
            new DoublePunctuationRule(messages),
            new GenericUnpairedBracketsRule(messages, this),
            new HunspellNoSuggestionRule(messages, this),
            new UppercaseSentenceStartRule(messages, this),
            new MultipleWhitespaceRule(messages, this),
            new SentenceWhitespaceRule(messages),
            // specific to French:
            new CompoundRule(messages),
View Full Code Here

Examples of org.languagetool.rules.spelling.hunspell.HunspellNoSuggestionRule

  public List<Rule> getRelevantRules(ResourceBundle messages) {
    return Arrays.asList(
            new CommaWhitespaceRule(messages),
            new DoublePunctuationRule(messages),
            new GenericUnpairedBracketsRule(messages, this),
            new HunspellNoSuggestionRule(messages, this),
            new UppercaseSentenceStartRule(messages, this),
            new WordRepeatRule(messages, this),
            new MultipleWhitespaceRule(messages, this)
    );
  }
View Full Code Here

Examples of org.languagetool.rules.spelling.hunspell.HunspellNoSuggestionRule

  public List<Rule> getRelevantRules(ResourceBundle messages) throws IOException {
    return Arrays.asList(
            new CommaWhitespaceRule(messages),
            new DoublePunctuationRule(messages),
            new GenericUnpairedBracketsRule(messages, this),
            new HunspellNoSuggestionRule(messages, this),
            new UppercaseSentenceStartRule(messages, this),
            new WordRepeatRule(messages, this),
            new MultipleWhitespaceRule(messages, this),
            new SentenceWhitespaceRule(messages),
            //Specific to Portuguese:
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.