JLabel label = new JLabel("Please enter your password for username " + username + " (database "
+ descriptor.getDbURL() + ").");
final JPasswordField jpf = new JPasswordField();
JOptionPane jop = new JOptionPane(new Object[] { label, jpf }, JOptionPane.QUESTION_MESSAGE,
JOptionPane.OK_CANCEL_OPTION);
JDialog dialog = jop.createDialog("Password...");
dialog.addComponentListener(new ComponentAdapter() {
@Override
public void componentShown(ComponentEvent e) {
SwingUtilities.invokeLater(new Runnable() {
@Override