Uses of Class
de.danielnaber.languagetool.rules.Rule

Packages that use Rule
de.danielnaber.languagetool   
de.danielnaber.languagetool.gui   
de.danielnaber.languagetool.rules   
de.danielnaber.languagetool.rules.de   
de.danielnaber.languagetool.rules.en   
de.danielnaber.languagetool.rules.fr   
de.danielnaber.languagetool.rules.patterns   
de.danielnaber.languagetool.rules.pl   
de.danielnaber.languagetool.rules.ru   
de.danielnaber.languagetool.rules.sv   
de.danielnaber.languagetool.rules.uk   
 

Uses of Rule in de.danielnaber.languagetool
 

Methods in de.danielnaber.languagetool that return types with arguments of type Rule
 List<Rule> JLanguageTool.getAllRules()
          Get all rules for the current language that are built-in or that have been added using JLanguageTool.addRule(de.danielnaber.languagetool.rules.Rule).
 

Methods in de.danielnaber.languagetool with parameters of type Rule
 void JLanguageTool.addRule(Rule rule)
          Add a rule to be used by the next call to JLanguageTool.check(java.lang.String).
 

Uses of Rule in de.danielnaber.languagetool.gui
 

Method parameters in de.danielnaber.languagetool.gui with type arguments of type Rule
 void ConfigurationDialog.show(List<Rule> rules)
           
 

Uses of Rule in de.danielnaber.languagetool.rules
 

Subclasses of Rule in de.danielnaber.languagetool.rules
 class AbstractPunctuationCheckRule
          A rule that matches "
 class CommaWhitespaceRule
          A rule that matches commas and closing parenthesis preceded by whitespace and opening parenthesis followed by whitespace.
 class DoublePunctuationRule
          A rule that matches ".."
 class UnpairedQuotesBracketsRule
          Rule that finds unpaired quotes, brackets etc.
 class UppercaseSentenceStartRule
          Checks that a sentence starts with an uppercase letter.
 class WhitespaceRule
          Check if there is duplicated whitespace in a sentence.
 class WordRepeatRule
          Check if a word is repeated twice, e.g.
 

Methods in de.danielnaber.languagetool.rules that return Rule
 Rule RuleMatch.getRule()
           
 

Constructors in de.danielnaber.languagetool.rules with parameters of type Rule
RuleMatch(Rule rule, int fromPos, int toPos, String message)
           
RuleMatch(Rule rule, int fromPos, int toPos, String message, boolean startWithUppercase)
          Creates a RuleMatch object, taking the rule that triggered this match, position of the match and an explanation message.
 

Uses of Rule in de.danielnaber.languagetool.rules.de
 

Subclasses of Rule in de.danielnaber.languagetool.rules.de
 class AgreementRule
          Simple agreement checker for German noun phrases.
 class CaseRule
          Check that adjectives and verbs are not written with an uppercase first letter (except at the start of a sentence) and cases like this: Das laufen fällt mir leicht.
 class CompoundRule
          Checks that compounds (if in the list) are not written as separate words.
 class DashRule
          Prüft, dass in Bindestrich-Komposita kein Leerzeichen eingefügt wird (wie z.B. in 'Diäten- Erhöhung').
 class GermanRule
          Abstract base class for rules for the German language.
 class WiederVsWiderRule
          Check incorrect use of "spiegelt ... wider", namely using "wieder" instead of "wider", e.g. in "Das spiegelt die Situation wieder" (incorrect).
 class WordCoherencyRule
          A rule that matches words for which two different spellings are used throughout the document.
 

Uses of Rule in de.danielnaber.languagetool.rules.en
 

Subclasses of Rule in de.danielnaber.languagetool.rules.en
 class AvsAnRule
          Check if the determiner (if any) preceding a word is: an if the next word starts with a vowel a if the next word does not start with a vowel This rule loads some exceptions from external files (e.g.
 class EnglishRule
          Abstract base class for rules for the English language.
 

Uses of Rule in de.danielnaber.languagetool.rules.fr
 

Subclasses of Rule in de.danielnaber.languagetool.rules.fr
 class FrenchRule
          Abstract base class for French rules.
 class QuestionWhitespaceRule
          A rule that matches spaces before ?
 

Uses of Rule in de.danielnaber.languagetool.rules.patterns
 

Subclasses of Rule in de.danielnaber.languagetool.rules.patterns
 class PatternRule
          A Rule that describes a language error as a simple pattern of words or of part-of-speech tags.
 

Uses of Rule in de.danielnaber.languagetool.rules.pl
 

Subclasses of Rule in de.danielnaber.languagetool.rules.pl
 class PolishRule
          Abstract base class for Polish rules.
 class PolishWordRepeatRule
           
 

Uses of Rule in de.danielnaber.languagetool.rules.ru
 

Subclasses of Rule in de.danielnaber.languagetool.rules.ru
 class RussianCompoundRule
          Checks that compounds (if in the list) are not written as separate words.
 class RussianRule
          Abstract base class for rules for the Russian language.
 

Uses of Rule in de.danielnaber.languagetool.rules.sv
 

Subclasses of Rule in de.danielnaber.languagetool.rules.sv
 class SwedishRule
          Abstract base class for Swedish rules.
 

Uses of Rule in de.danielnaber.languagetool.rules.uk
 

Subclasses of Rule in de.danielnaber.languagetool.rules.uk
 class PunctuationCheckRule
          A rule that matches "
 class SimpleReplaceRule
          A rule that matches words or phrases which should not be used and suggests correct ones instead.
 



Copyright © 2005-2007 Daniel Naber