Does the JGoodies list binding support binding list contents to a list object in the model? I know I can add listeners to the list model and domain model and coordinate changes between the two fairly easily, but I wasn't sure if JGoodies would do that. I could only find list binding that dealt with list selection ev开发者_如何学Cents.
I'd suggest you use GlazedLists. It's really easy to use and works great.
One issue is you have to use one of their classes that implements EventList
; you can't just bind a list model to a pre-existing List
.
It looks like the LinkedListModel and ArrayListModel do this. I overlooked those before.
精彩评论