In my Code I customize a DefaultTreeCellRenderer
to give my nodes a custom icon.
setCellRenderer(new DefaultTreeCellRenderer() {
private static final long serialVersionUID = -2839238218110688876L;
private ImageIcon icon = myIcon;
@Override
public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean isLeaf, int row, boolean focused) {
super.getTreeCellRendererComponent(tree, value, selected, expanded, isLeaf, row, hasFocus);
Component c = super.getTreeCellRendererComponent(tree, value, selected, expanded, isLeaf, row, focused);
setIcon(icon);
return c;
}
});
All that worked just fine until I made my tree editable so that the user can edit the node identifier. Now the icon switches back to default while editing nodes. It seems like the editing tree cell renderer is not the same as the one I wrote. Does anyone know how to fix this?
Using the
setLeafIcon(Icon)
,setOpenIcon(Icon)
andsetClosedIcon(Icon)
methods ofDefaultTreeCellRenderer
might be simpler.