views:

81

answers:

1

I'm missing something obvious here.

I have a glazedlists EventList<X> where X is my custom class. This list contains a bunch of values. When I update one of the values, how do I make sure the GUI updates its display for that row?

+1  A: 

It looks like you can invoke addListEventListener to register a ListEventListener. See also the Glazed Lists Tutorial.

trashgod
great, thanks! -
Jason S