use of com.evolveum.midpoint.xml.ns._public.common.common_3.ComponentSizeInformationType in project midpoint by Evolveum.
the class InternalsCachePanel method addComponents.
private void addComponents(KeyValueTreeNode<String, SizeInformation> node, List<ComponentSizeInformationType> components) {
for (ComponentSizeInformationType component : components) {
KeyValueTreeNode<String, SizeInformation> child = node.createChild(component.getName(), new SizeInformation(component));
addComponents(child, component.getComponent());
}
}
Aggregations