* Fixes a bug in the "Nimbus" Look and Feel.
*
* @see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6723524
*/
private static void fixNimbusTables() {
LookAndFeel lookAndFeel = UIManager.getLookAndFeel();
if (lookAndFeel.getClass().toString().contains("NimbusLookAndFeel")) {
UIDefaults defaults = lookAndFeel.getDefaults();
defaults.remove("Table.alternateRowColor");
defaults.put("Table.showGrid", Boolean.TRUE);
defaults.put("Table.gridColor", new ColorUIResource(203, 209, 216));
defaults.put("Table.intercellSpacing", new DimensionUIResource(1, 1));
defaults.put("Table.background", new ColorUIResource(242, 242, 242));