I am trying to make all the cells of a JTable uneditable when double clicked by the user. I have read a lot of forum posts and the general consensus is to create a new table
Earlier today I had the same problem. This solved it for me.
JTable table = new JTable( data, headers ){ public boolean isCellEditable(int row, int column){ return false; } };
works great!