/**
  * Updates the Message Area at the top of the containing dialog, based upon the current status of
  * the panel
  */
 private void updateMessageArea() {
   int statusType = IMessageProvider.NONE;
   String message = ALL_RESOLVED_MESSAGE;
   if (this.bindingList.hasTypeConflict()) {
     message = ONE_OR_MORE_UNRESOLVED_MESSAGE;
     statusType = IMessageProvider.ERROR;
   }
   datatypeReconcilerDialog.setMessage(message, statusType);
 }
 /**
  * Updates the Message Area at the top of the containing dialog, based upon the current status of
  * the panel
  */
 private void updateMessageArea() {
   int statusType = IMessageProvider.NONE;
   String message = Messages.datatypeReconciler_allResolvedMessage;
   if (this.bindingListInput.getBindingList().hasTypeConflict()) {
     message = Messages.datatypeReconciler_someUnresolvedConflicts;
     statusType = IMessageProvider.ERROR;
   }
   datatypeReconcilerDialog.setMessage(message, statusType);
 }