JTable listeners?

All cells in my tableModel are editable. Is there a way to find out when a valuie of a cell has changed or must I assume that anytime setValueAt is called that a change was made?
[192 byte] By [kaze0] at [2007-9-26 1:34:07]
# 1

That's what setValueAt() is for, it tells you that the JTable has caused the cell's value to be changed. Of course, it is possible that you have written some other code that is changing the data, but that would not have been a good design. The table model should own the data and control all access to it.

DrClap at 2007-6-29 2:16:47 > top of Java-index,Archived Forums,Java Programming...