if (t.isDataFlavorSupported(HermesAdministeredObjectTransferable.FLAVOR)) {
if (getSelectionPath().getLastPathComponent() instanceof NamingConfigTreeNode) {
final NamingConfigTreeNode namingConfigTreeNode = (NamingConfigTreeNode) getSelectionPath().getLastPathComponent();
final Collection objects = (Collection) t.getTransferData(HermesAdministeredObjectTransferable.FLAVOR);
final JNDIContextFactory contextFactory = new JNDIContextFactory(namingConfigTreeNode.getConfig());
final BindToolDialog bindTool = new BindToolDialog(HermesBrowser.getBrowser(), contextFactory, "", objects);
bindTool.pack();
JideSwingUtilities.centerWindow(bindTool);
bindTool.show();
return true;
}
}
} catch (Exception ex) {