use of org.eclipse.linuxtools.internal.systemtap.ui.consolelog.structures.ErrorStreamDaemon in project linuxtools by eclipse.
the class ScriptConsole method internalRun.
private void internalRun(IErrorParser errorParser) {
if (hasStarted()) {
reset();
}
if (errorParser != null) {
errorDaemon = new ErrorStreamDaemon(this);
}
createConsoleDaemon();
notifyConsoleObservers();
activate();
onCmdStartThread = new Thread(onCmdStart);
onCmdStartThread.start();
}
use of org.eclipse.linuxtools.internal.systemtap.ui.consolelog.structures.ErrorStreamDaemon in project linuxtools by eclipse.
the class ErrorStreamDaemonTest method setUp.
@Before
public void setUp() {
StreamGobbler gobbler = new StreamGobbler(System.in);
gobbler.start();
daemon = new ErrorStreamDaemon(null);
}
Aggregations