Hi Joseph, Use the List.update method with the same (updated) object. So, the flow would be: List<Object> list = getTableData(); Object obj = list.get(index); modify obj list.update(index, obj);
And that's all you have to do. ~Roger On Jun 11, 2012, at 6:21 PM, Joseph Paterson wrote: > Hello, > > I have a TableView with some data in it. I've had no issues adding new data > via getTableData().add(...), however I'm not sure how to notify the table if > any of the existing data has changed. I've tried tableView.repaint() with no > luck. The data in the table is a simple POJO. > > Many thanks in advance! > > Joseph.
