Let's say I change a cell with value "old" to "new". This will invoke tableChanged(TableModelEvent). How do I retrieve the value that the cell had before "new"(which should be "old")?
I thought about making a copy of TableModel of my JTable,but is there a simpler and smarter way to do this?
Thanks in advance!