For those who are still interested in this:
The following snippet works for me.
NewNimbusLookAndFeel laf = new NewNimbusLookAndFeel(); UIDefaults defs = laf.getDefaults(); defs.put("Tree.drawHorizontalLines", true); defs.put("Tree.drawVerticalLines", true); defs.put("Tree.linesStyle", "dashed"); try { UIManager.setLookAndFeel(laf); } catch (UnsupportedLookAndFeelException e) {
Angel velazquez
source share