public final class RequiredObjectsTreeUi implements UiProvider {
private final KongaTree tree;
public RequiredObjectsTreeUi(RequiredObjectsTree tree) {
this.tree = new KongaTree(buildTreeModel(tree));
this.tree.setCellRenderer(new IntegrationEntityTreeRenderer());
this.tree.setRowHeight(20);
this.tree.expandAll();
}