LexiconFactory factory = new LexiconFactory();
SourceUtil.toSAX(this.manager, this.lexiconSource, null, factory);
Lexicon lexicon = factory.getLexicon();
LexicalAutomatonBuilder builder =
new LexicalAutomatonBuilder(lexicon/*, new AvalonLogger(this.logger)*/);
this.automaton = builder.getLexicalAutomaton();
this.logger.info("Store automaton into store for '"+this.lexiconSource.getURI()+"'");
store.store(this.lexiconSource.getURI(),
new LexicalAutomatonEntry(this.automaton, this.lexiconSource.getValidity()));
}