Worker worker = new Worker(destinationTypes, waitLock);
worker.execute();
}
private WaitLock startWait() {
ApplicationWindow appWin = ApplicationUi.getAppWin();
if (appWin != null) {
return appWin.startWait();
}
DummyWaitService d = new DummyWaitService();
return d.startWait();
}