Initial headers in JTable
Hi
I am having a problem using AbstractTableModel. The thing is that it is working perfectly for my application but I can get the header to appear with the initial names that I am setting. I am following some examples that I found on how to use this class, but in all of them the headers are declared at the begining in an String array;
e.g. String[] headers= {"Last", "Name", "Sex"}
But on the rest of the code I can't find where these values are actually set as headers for the table. When the table is displayed I get "A", "B", and "C" as the headers.
Thanks in advance

