treeRenderer = new IntegrationEntityTreeRenderer();
}
public MultiTreeSection createTypeSection(EntityType type) {
checkArgument(config.isIncluded(type), type + " is not supported");
DynamicProjectTree tree = new EntityTree(type);
configureTree(tree.getAdaptee());
MultiTreeSection section = new MultiTreeSection(owner, type, tree);
doTypeSpecificConfiguration(type, section);
return section;
}