I have a JTable with a custom model implemented extending AbstractTableModel.
public abstract class AbstractTable extends AbstractTableModel{
public Cl
Seems like adding a mouse listener is an extra step. I would suggest intercepting the change in the setValue()
method of the model.
If you can't change the setValue()
method then the next best thing is a CustomEditor
that will block changes because this is not a good way to catch and hide the mouse click even from the default boolean editor.