}
Process p = executor.execute(arguments);
String processName = ovalBin + " : " + this.getDefinitionXmlFile().getName();
IORedirect ioRedirect = new IORedirect( p.getInputStream(), out, outputInfoAndErrorsToSTDOUT );
ioRedirect.setProcessName( processName );
Thread t = ioRedirect; //totally unnecessary, just to make it clear that IORedirect is a Thread object
t.start();
t.join();