Package com.swabunga.spell.engine

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

Related Classes of com.swabunga.spell.engine.GenericSpellDictionary

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.