public void playCreateNode(DBEventCreateNode event) {
if(event.tokenIndex == -1) {
/** Imaginary token. Use the 'text' and 'type' info instead. */
debuggerTab.playerCreateNode(event.id, event.text, event.type);
} else {
DBInputTextTokenInfo info = processor.getTokenInfoAtTokenIndex(event.tokenIndex);
if(info == null)
debuggerTab.getConsole().println("No token info for token index "+event.tokenIndex);
else
debuggerTab.playerCreateNode(event.id, info.token);
}