/**
* Creates and initialized the analyzer
*/
public void initialize() throws IOException {
// Get the dictionary as a resource stream
SimpleWordTokenizer t = new SimpleWordTokenizer(this.getClass().getClassLoader().getResourceAsStream(ENGLISH_DICTIONARY_PATH));
t.tokenize();
tokens = t.getTokens();
Arrays.sort(tokens);
buildTrees();
}