thread.start();
consoleOutput.setText(consoleOutput.getText() + "\n" + consoleInput.getText());
}
if ( "-transport".equals(fragmentCommand[1]))
{
Dispatcher dispatcher = new Dispatcher(Integer.parseInt(fragmentCommand[2]));
Thread thread = new Thread(dispatcher);
thread.start();
}
if ( "-node".equals(fragmentCommand[1]))
{