/**
  * Sets this editor's IObservableValue associated to the model property, and binds it to the
  * Editor's Widget
  *
  * @param modelProperty
  */
 public void setModelObservable(IObservableValue modelProperty) {
   this.modelProperty = modelProperty;
   doBinding();
 }