"Password:" );
final PasswordTextBox userPassInput = new PasswordTextBox();
if ( rdbmsConf.getDbPass() != null && rdbmsConf.getDbPass().trim().length() > 0 ) {
userPassInput.setValue( rdbmsConf.getDbPass() );
}
userPassInput.addClickHandler( new ClickHandler() {
public void onClick(ClickEvent w) {
repoDisplayArea.setVisible( false );
saveRepoConfigForm.setVisible( false );
}
} );