child.setText(getElementName(children[i].getJavaElement()));
child.setImage(getImage(children[i]));
MetricValue val = children[i].getValue(metric);
child.setText(1, (val != null) ? format(val.getValue())
: "");
AvgValue avg = children[i].getAverageValue(metric);
MaxValue max = children[i].getMaxValue(metric);
if ((avg != null) || (max != null)) {
if (avg != null) {
child.setText(2, format(avg.getValue()));
}
if (max != null) {
child.setText(3, format(max.getValue()));
String handle = max.getHandle();
if (handle != null) {