I am trying to bind an ArrayList of objects to a Java SWT List widget. This is what I have:
DataBindingContext bindingContext = new DataBindingContext();
//
myModel= new WritableList(buses, MyObject.class);
IObservableList listWidgetObs = SWTObservables.observeItems(listWidget);
bindingContext.bindList(listWidgetObs , myModel, null, null);
//
return bindingContext;
But somehow, it doesn't seem to work. I have been trying for a long time but still with no luck. This is my first time trying data binding in Java. How do I bind an ArrayList as the data provider of an SWT List widget and then bind it to the value of a method call getName() in MyObject class?
Thanks!
it doesn't seem to workmean? Is there an error or is the data not being bound together? – bamana May 26 '11 at 19:16