I know that you should never modify a SWING component on a thread other than the EDT. What if I have a JTable object that I have created using the code:
JTable myTable = new JTable(myTableModel);
but I have not yet added the table to any SWING component. Can I call the JTable methods on a thread in such a case? For example I set up the size, foreground and background colors, column widths, and some other stuff. Can all of this be done on a thread other than the EDT if the table has not been added to the GUI?