I have a JTable with a custom model implemented extending AbstractTableModel.
public abstract class AbstractTable extends AbstractTableModel{
public Cl
I can't resist with @jzd advice really no, I think that not, not ensure me going throught TableMode#setValue,
but basically there are two options
1) TableModelListener
2) AFAIK only TableCellEditor#isCellEditable can do that in connections with JCheckBox or JRadioButton in JTable
public boolean isCellEditable(EventObject getEvent) {
MouseEvent me = (MouseEvent) getEvent;
JTable table = (JTable) (me.getSource());
Point point = me.getPoint();
int column = table.columnAtPoint(point);
int row = table.rowAtPoint(point);
Rectangle rec = table.getCellRect(row, column, true);
//...
}