//SAXConfigurationHandler confighandler = new SAXConfigurationHandler();
if (this.grammarSource.getInputStream()==null)
throw new ProcessingException("Source '"+this.grammarSource.getURI()+"' not found");
GrammarFactory factory = new GrammarFactory();
SourceUtil.toSAX(this.manager, this.grammarSource, null, factory);
//Configuration config = confighandler.getConfiguration();
//Grammar grammar = GrammarFactory.createGrammar(config);
Grammar grammar = factory.getGrammar();
if (grammar==null)
throw new ProcessingException("Error while reading the grammar from "+src);
ParserAutomatonBuilder builder =