Label errorLabel = new Label(editArea, SWT.NONE);
GridDataFactory.fillDefaults().span(2, 1).grab(true, false).applyTo(errorLabel);
// error label
context.bindValue(SWTObservables.observeText(errorLabel), //
new AggregateValidationStatus(context, AggregateValidationStatus.MAX_SEVERITY), //
null, //
new UpdateValueStrategy().setConverter(new StatusTextConverter()));
}