Interface ISpellCheckerProvider

All Known Implementing Classes:
SpellCheckerDummy

public interface ISpellCheckerProvider
Interface for spell checker implementation.

Instance loaded on each new project open.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Destroy checker.
    boolean
    Check is word correct.
    void
    Add a word to the list of correct words.
    return a list of strings as suggestions.
  • Method Details

    • isCorrect

      boolean isCorrect(String word)
      Check is word correct.
    • suggest

      List<String> suggest(String word)
      return a list of strings as suggestions.
    • learnWord

      void learnWord(String word)
      Add a word to the list of correct words.
    • destroy

      void destroy()
      Destroy checker.