setErrorMessage(ImportReportPage1NoExecutionDataFile_message);
setPageComplete(false);
return;
}
try {
dataSource = new URLExecutionDataSource(execfile.toURL());
} catch (MalformedURLException e) {
setErrorMessage(ImportReportPage1NoExecutionDataFile_message);
setPageComplete(false);
return;
}
}
if (urlradio.getSelection()) {
try {
dataSource = new URLExecutionDataSource(new URL(urlcombo.getText()));
} catch (MalformedURLException e) {
setErrorMessage(ImportReportPage1NoExecutionDataUrl_message);
setPageComplete(false);
return;
}