348349350351352353354355356357358
if (item == null) { return; } if (item.isRendered() && !item.isRoot()) { item.updateJointStyle(); item.updateIconStyle(); } if (item.isRoot() || item.getData("loaded") != null) { List<M> children = tse.getChildren();
364365366367368369370371372373374
} } else if (item.getData("loaded") == null) { if (hasChildren(item.<M>getModel())) { item.setLeaf(false); if (item.isRendered()) { item.updateJointStyle(); } } } }