form.addFormElement(new BasicTextBoxFormElement(MAX_LENGTH, false, "First Name",
PersonModelView.PREFERREDNAME_KEY, person.getPreferredName(),
"Entering a display name will replace your first name anywhere your name "
+ "appears in the system", true));
form.addFormDivider();
form.addFormElement(new BasicTextAreaFormElement(Person.MAX_JOB_DESCRIPTION_LENGTH,
"Job Description", PersonModelView.DESCRIPTION_KEY, person.getJobDescription(),
"Enter a brief description of your job responsibilities.", false));
form.addFormDivider();
String skills = DomainFormatUtility.buildCapabilitiesStringFromStrings(person.getInterests());