private void update() {
   fIdEntry.setValue(
       fInput != null && fInput.getId() != null ? fInput.getId() : "", // $NON-NLS-1$
       true);
   fNameEntry.setValue(
       fInput != null && fInput.getName() != null ? fInput.getName() : "", true); // $NON-NLS-1$
   fSchemaEntry.setValue(
       fInput != null && fInput.getSchema() != null ? fInput.getSchema() : "",
       true); //$NON-NLS-1$
   updateRichText();
 }