JTable : Detecting data changes How can I detect changes of particular editable cell in a JTable ?
Created Sep 28, 2001
Scott Stanchfield
If you implement this interface, you can add a listener to the table model as follows:
The trick is to listen to the model of the table.
Table models fire events in the TableModelListener interface.
table.getModel().addTableModelListener(new MyTableModelListener());