I got a JTable which is supposed to have headers, but they don't show!
I have:
public
String getColumnName( int c ){return headers[c];}
where headers in an array of strings. This function is in my custom model which extends abstractTableModel. I've done this in another part of my code and it works. Why it doesn't work this time is beyond me! Have any ideas?
Thanks!