I've subclassed AbstractTableModel for use as the model for my JTable. Whenever data is added to I call fireTableRowsInserted() in the AWT thread. All access to my underlying container is made thread safe by using synchronized methods.

This pattern has been working fine for me so far. However now I want to remove data from the list I've realised I have a threading issue. If I remove a row and call fireTableRowsDeleted() in the AWT thread I can still get a call to getValueAt() for a row index that now no longer exists.

What is best practise for performing operation on a the table model outside the AWT thread?

link|improve this question

43% accept rate
that's depends if (overide) methods are inside AbstractTableModel and if methods FireXxxXxx and called from outside Model or not, because I don't see any difference between addRow and removeRow on both sides (Model and View too) – mKorbel Jul 12 '11 at 22:03
feedback

2 Answers

up vote 5 down vote accepted

The best practice IMHO is to avoid doing it. Wrap every access to the model from another thread inside a Runnable and use SwingUtilities.invokeLater to update the model.

link|improve this answer
+1, same thought process. – mre Jul 12 '11 at 19:54
basic stuff for EDT +1 – mKorbel Jul 12 '11 at 22:05
feedback

You'll have to remove the data from the EDT. Any operation that results in AbstractTableModel firing a change event needs to be done in the EDT.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.