if (result == JFileChooser.APPROVE_OPTION) {
final File selectedFile = profileFileChooser.getSelectedFile();
if (!droidContext.selectProfileWithSource(selectedFile)) {
// Give the tab with this profile the focus...
LoadProfileWorker worker = new LoadProfileWorker(profileManager, droidContext, jProfilesTabbedPane);
worker.setProfileFile(selectedFile);
worker.init(new ProfileForm(this, droidContext, buttonManager));
worker.execute();
}
}
}