I understand how to add rows to a Jtable, but I don't know how to add particular styles to certain cells within those rows I. E.
When I utilise the following code:
Example.insertRow(0, new Object[]{ "A", "B", "C", "D", "E" });
I would like to know how I could make text within cell "A" underlined, cell "B" bold and cell "C" a different colour for instance "blue".
I'm sure this is possible, I just don't know how.