I have the exact same code as this post: https://stackoverflow.com/a/8187799/5464538
This code create a table like this one:
+------+------+------+------+
|/\/\/\| col1 | col2 | col3 |
+------+------+------+------+
| row1 | | | |
+------+------+------+------+
| row2 | | | |
+------+------+------+------+
| row3 | | | |
+------+------+------+------+
I want to be able to label the first cell of the tab. The one that contains /\/\/\
, in order to give a title to the first column. I didn't find anything on my researches on such a thing. I'm not even sure if this is possible with my current JTable
. If it is not, is there an other way to have this result?