"Has password strength checker");
hasPasswordStrengthChecker.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (hasPasswordStrengthChecker.isSelected()) {
jpf.putClientProperty(LafWidget.PASSWORD_STRENGTH_CHECKER,
new PasswordStrengthChecker() {
public PasswordStrength getStrength(
char[] password) {
if (password == null)
return PasswordStrength.WEAK;
int length = password.length;