178179180181182183184185186187188
List<ProfilerPoint> children = root.getChildren(); Collections.sort(children, comparator); for (ProfilerPoint child : children) display(child, comparator, out, 0); out.endElement("table"); out.endElement("body"); out.endElement("html"); }
180181182183184185186187188189190
for (ProfilerPoint child : children) display(child, comparator, out, 0); out.endElement("table"); out.endElement("body"); out.endElement("html"); } private void display(ProfilerPoint node,
182183184185186187188189190191192
out.endElement("table"); out.endElement("body"); out.endElement("html"); } private void display(ProfilerPoint node, ProfilerNodeComparator comparator, XmlWriter out,
332333334335336337338339340341342
Collections.sort(children, comparator); for (ProfilerPoint child : children) displayXml(child, comparator, out); out.endElement("profile"); } private void displayXml(ProfilerPoint node, ProfilerNodeComparator comparator, XmlWriter out)