SessionPane.add(passwdField, new GridBagConstraints(1, 6, 1, 1, 0, 0,
GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
new Insets(0, 0, 0, 0), 0, 0));
/* Remove the RETURN key from the shared map of JTextFields */
Keymap map = hostField.getKeymap();
KeyStroke key = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0);
map.removeKeyStrokeBinding(key);
/* Make the OK button the default button */
this.getRootPane().setDefaultButton(okButton);
} //private jbInit()