Clover coverage report - DynamicJava Test Coverage (dynamicjava-20110903-r5436)
Coverage timestamp: Sat Sep 3 2011 03:02:20 CDT
file stats: LOC: 29   Methods: 2
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ClassType.java 50% 80% 100% 77.8%
coverage coverage
 1    package edu.rice.cs.dynamicjava.symbol.type;
 2   
 3    import edu.rice.cs.dynamicjava.symbol.*;
 4   
 5    /**
 6    * Class ClassType, a component of the ASTGen-generated composite hierarchy.
 7    * Note: null is not allowed as a value for any field.
 8    * @version Generated automatically by ASTGen at Sat Sep 03 03:01:28 CDT 2011
 9    */
 10    @SuppressWarnings("unused")
 11    public abstract class ClassType extends ReferenceType {
 12    private final DJClass _ofClass;
 13   
 14    /**
 15    * Constructs a ClassType.
 16    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 17    */
 18  53994 public ClassType(DJClass in_ofClass) {
 19  53994 super();
 20  53994 if (in_ofClass == null) {
 21  0 throw new java.lang.IllegalArgumentException("Parameter 'ofClass' to the ClassType constructor was null");
 22    }
 23  53994 _ofClass = in_ofClass;
 24    }
 25   
 26  652943 public DJClass ofClass() { return _ofClass; }
 27   
 28    public abstract int generateHashCode();
 29    }