selDialog.setSorter(new JavaElementSorter());
dialog = selDialog;
}
dialog.setTitle(BeansUIPlugin.getResourceString(DIALOG_TITLE));
dialog.setMessage(BeansUIPlugin.getResourceString(DIALOG_MESSAGE));
if (dialog.open() == Window.OK) {
Object[] selection = dialog.getResult();
if (selection != null && selection.length > 0) {
for (Object element : selection) {
String config = null;
if (element instanceof ZipEntryStorage) {