I have a JTable and need to change some of it's properties, such as it's Highlight colour.
This website indicates there are fields in the table such as "highlight" and "light".
I can't find them anywhere. When you create an instance of a JTable, nothing involving "Highlight" or "light" show up in intellisense. (However some methods such as table.setFont() do show up).
I did however notice table.setUI();
but I don't know how to use it, or if it has anything to do with this.
What I exactly am looking for is to make a row change it's colour when you hover the mouse over it, I'm not sure if Highlight
will do this or if I will have to go the long way by implementing the mouseListener. I still want to be able to change other L&F settings though.