use of com.insightfullogic.honest_profiler.ports.javafx.view.tree.NodeTreeItem in project honest-profiler by jvm-profiling-tools.
the class TreeViewController method refresh.
// AbstractViewController Implementation
@Override
protected void refresh() {
Tree target = getTarget();
if (target == null) {
treeTable.setRoot(null);
} else {
treeTable.setRoot(new NodeTreeItem(getTarget().filter(getFilterSpecification())));
expandPartial(treeTable.getRoot(), 2);
}
treeTable.sort();
}
Aggregations