protected void changePropertyValue() {
   String newValue = nameWidget.getText();
   if (!newValue.equals(bc.getName())) {
     bc.setName(newValue);
   }
 }