Eclipse Databinding + Validation + Decoration
Join the DZone community and get the full member experience.
Join For FreeWhen it comes to databinding, a very common use case is to decorate form fields with little markers that indicate the state of the control. The following example explains how to do this with Eclipse databinding and JFace. Here is a screenshot:
The code to create an error decoration for a control is pretty straight forward:
ControlDecoration controlDecoration = new ControlDecoration( control, SWT.LEFT | SWT.TOP); controlDecoration.setDescriptionText(hoverText); FieldDecoration fieldDecoration = FieldDecorationRegistry .getDefault().getFieldDecoration( FieldDecorationRegistry.DEC_ERROR); controlDecoration.setImage(fieldDecoration.getImage());
After creating the error decoration, you can implement a databindig validator that checks the condition and hides or shows the decoration accordingly:
class StringRequiredValidator implements IValidator { private final String errorText; private final ControlDecoration controlDecoration; public StringRequiredValidator(String errorText, ControlDecoration controlDecoration) { super(); this.errorText = errorText; this.controlDecoration = controlDecoration; } public IStatus validate(Object value) { if (value instanceof String) { String text = (String) value; if (text.trim().length() == 0) { controlDecoration.show(); return ValidationStatus .error(errorText); } } controlDecoration.hide(); return Status.OK_STATUS; } }
Now you can bind a model property to a text field with an UpdateStrategy using your validator:
dataBindingContext.bindValue( SWTObservables.observeText(firstNameText, SWT.Modify), PojoObservables.observeValue(person, "firstName"), new UpdateValueStrategy() .setAfterConvertValidator(new StringRequiredValidator( "Please enter first name", firstNameDecoration)), null);
If you want to use (existing) validators without handing the control decoration over, you could create a map for controls and their corresponding decorators, and then use an AggregateValidationStatus to control the decorators:
AggregateValidationStatus aggregateValidationStatus = new AggregateValidationStatus( dataBindingContext.getBindings(), AggregateValidationStatus.MAX_SEVERITY); agregateValidationStatus .addChangeListener(new IChangeListener() { public void handleChange(ChangeEvent event) { for (Object o : dataBindingContext.getBindings()) { Binding binding = (Binding) o; IStatus status = (IStatus) binding .getValidationStatus().getValue(); Control control = null; if (binding.getTarget() instanceof ISWTObservable) { ISWTObservable swtObservable = (ISWTObservable) binding.getTarget(); control = (Control) swtObservable.getWidget(); } ControlDecoration decoration = decoratorMap.get(control); if (decoration != null) { if (status.isOK()) { decoration.hide(); } else { decoration .setDescriptionText(status.getMessage()); decoration.show(); } } } } });
You can download an Eclipse project with the running examples here: Binding Decoration Examples. I also implemented this in my RCP demo project MP3 Manager.
Have Fun!
Kai
Opinions expressed by DZone contributors are their own.
Comments