Package com.liferay.util.jazzy

Examples of com.liferay.util.jazzy.BasicSpellCheckListener


  }

  private List _checkSpelling(String text) {
    SpellChecker checker = new SpellChecker(_spellDictionary);

    BasicSpellCheckListener listener = new BasicSpellCheckListener(text);

    checker.addSpellCheckListener(listener);

    checker.checkSpelling(
      new StringWordTokenizer(new DefaultWordFinder(text)));

    return listener.getInvalidWords();
  }
View Full Code Here

TOP

Related Classes of com.liferay.util.jazzy.BasicSpellCheckListener

Copyright © 2018 www.massapicom. 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.