PropertyList propertyList = new PropertyList(_mbsc, objectName, "http.statistics");
propertyList.setTitle("Connector: " + (String) _mbsc.getAttribute(objectName, "name"));
Iterator<Property> it = propertyList.iterator();
while (it.hasNext())
{
Property property = (Property) it.next();
String name = property.getName();
int index = name.indexOf("since statsReset()");
if (index != -1)
property.setName(name.substring(0, index));
}
add(new PropertiesPrinter(propertyList));
add(new HtmlPrinter()
{