* Creates new form NewProjectConfigurationPanel
*/
public NewProjectConfigurationPanel() {
initComponents();
this.unzipRadioButton.setSelected(true);
FuelDownloads fuelDownloads = new FuelDownloads();
downloadsMap.putAll(fuelDownloads.getDownloadsMap());
versionList.setListData(fuelDownloads.getDownloadVersions());
versionList.setSelectedIndex(0);
if (!FuelDownloads.isInternetReachable()) {
errorMessage = "Is not connected to the network.";
}
gettingFileInfoLabel.setText(errorMessage);