41424344454647
* @param dictionaryDir * A directory that contains an N-Gram index, for * the underlying SpellChecker */ public WordQuerySuggestor(File dictionaryDir) throws IOException{ super(new SpellChecker(FSDirectory.getDirectory(dictionaryDir))); }