Search in sources :

Example 1 with ComponentSizeInformationType

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());
    }
}
Also used : ComponentSizeInformationType(com.evolveum.midpoint.xml.ns._public.common.common_3.ComponentSizeInformationType)

Aggregations

ComponentSizeInformationType (com.evolveum.midpoint.xml.ns._public.common.common_3.ComponentSizeInformationType)1