I am using a jTable which is populated with mysql db data using rs2xml
table.setModel(DbUtils.resultSetToTableModel(rs));
I have some columns that are displayed by boolean values, but these must become checkboxes. I understand that i have to write my own AbstractTableModel, but I don't know how...
Can one of you give an example of how you extend the AbstractTableModel and use it in your code?