I have a java bean such as Contact which has attributes such as name,
address, email. The object presented to my code is a Wrapped WritableValue
object, i.e. IObservableValue.
For instance,
IObservableValue contactObservable = new WritableValue(new Contact(),
Contact.class);
I tried to bind the name attributed of Contact bean wrapped in
contactObservable to a text field. I did the following: