this.cleanUpDownloadStarter();
XPlanetRessourceFinder f = new XPlanetRessourceFinder();
String dirOnDisc = f.getRessourceDirectory("downloader");
String cfgFileDownload = dirOnDisc + File.separator + MainFrame.FILE_NAME_DOWNLOADER_CONFIG;
DownloadTimer downloadTimer = new DownloadTimer(cfgFileDownload);
this.downloadStarter = new DownloadStarter();
this.downloadStarter.setTimer(downloadTimer);
// Fill the text area
this.refreshDownloaderTextArea();
return downloadTimer;
}