displayHasContact(userAccount);
}
@Override
ContactInformation toContactInformation() {
final ContactInformation info;
if (Gerrit.getConfig().isUseContactInfo()) {
info = new ContactInformation();
info.setAddress(addressTxt.getText());
info.setCountry(countryTxt.getText());
info.setPhoneNumber(phoneTxt.getText());
info.setFaxNumber(faxTxt.getText());
} else {
info = null;
}
return info;
}