// for alle terminal symbols
for (i = 0; i < _tsymbols.getSymbolCount(); i++)
_table.setTerminalSymbol(i, _tsymbols.getSymbol(i).getName());
// for the regex automates of the terminal symbols
RegexAutomate tdefinition;
for (i = 0; i < _grammar.getTokenList().getTokenCount(); i++)
{
_table.setTokenDefinition(i, (new RegexAutomateGenerator(
_grammar.getTokenList().getToken(i).getDefinition())).getRegexAutomate());