EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010)
[all classes][org.dcache.util]

COVERAGE SUMMARY FOR SOURCE FILE [ClassNameComparator.java]

nameclass, %method, %block, %line, %
ClassNameComparator.java100% (1/1)100% (2/2)100% (11/11)100% (2/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ClassNameComparator100% (1/1)100% (2/2)100% (11/11)100% (2/2)
ClassNameComparator (): void 100% (1/1)100% (3/3)100% (1/1)
compare (Object, Object): int 100% (1/1)100% (8/8)100% (1/1)

1package org.dcache.util;
2 
3import java.util.Comparator;
4 
5public class ClassNameComparator implements Comparator<Object>
6{
7    public int compare(Object o1, Object o2)
8    {
9        return o1.getClass().getName().compareTo(o2.getClass().getName());
10    }
11}

[all classes][org.dcache.util]
EMMA 2.0.5312 (C) Vladimir Roubtsov