dialog.setText(i18nFile.getText(I18nFile.IMPORTREDIS));
String[] filterExt = { "*.*" };
dialog.setFilterExtensions(filterExt);
String file = dialog.open();
if (file != null) {
ImportService service = new ImportService(file, cinfo.getId(),
cinfo.getDb());
try {
service.importFile();
} catch (IOException e) {
throw new RuntimeException(e.getMessage());
}
dbContainerTreeItemSelected(treeItem, true);