public void updateRootCache(ServerFile file, String[] roots) {
rootCache.updateRootCache(file, roots);
}
public void retrieveRootNames(ServerFile file) {
UiJobManager jobMgr = ApplicationUi.getJobManager();
if (getRootsJob != null) {
jobMgr.cancelJob(getRootsJob);
}
getRootsJob = new GetRootsJob(startPage, file);
getRootsJob.submit();
UiUtils.setEnabledRecursively(startPage.getMainPanel(), false);
try {