sortTypeChildren( iter );
boolean first = true;
for( Object obj : childList )
{
ServiceDetailDescriptor descriptor = (ServiceDetailDescriptor) obj;
if( first )
{
String name = "Services";
parent = addChild( parent, name, name );
first = false;
}
addChild( parent, descriptor.descriptor().toString(), descriptor );
}
}