Different models for different tables...
Hi,
I've a gui interface with 3 different table (different fields);
I need of editing only
- the first column of the table1
- the second column of the table2
- the third column of the table3
Must I create three different classes, one for each table, that extend DefaultTableModel and override in a different way, the isCellEditable method?
Is this the only way?
I think it isn't a fast way.
Thank you.
MargNat

