@Override
 public void setValue(PersonProxy value) {
   createMutablePerson(value);
   addressPresenter.setValue(person.getAddress());
   display.getName().setValue(person.getName());
   display.getNote().setValue(person.getNote());
   display.getDescription().setValue(person.getDescription());
   mentorSelector.setValue(person.getMentor());
   scheduleEditor.setValue(person.getClassSchedule());
 }