Examples of GenericSpellDictionary


Examples of com.swabunga.spell.engine.GenericSpellDictionary

    static SpellDictionary spellDictionary;
   
    public void init(ServletConfig config) throws MalformedURLException, URISyntaxException, FileNotFoundException, IOException
      {
        File file = new File(config.getServletContext().getRealPath("/WEB-INF/dictionary/english.0"));
        spellDictionary = new GenericSpellDictionary(file);
        spellDictionary.addWord("a");
      }
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.