Clover coverage report - DynamicJava Test Coverage (dynamicjava-20120303-r5436)
Coverage timestamp: Sat Mar 3 2012 03:02:19 CST
file stats: LOC: 77   Methods: 1
NCLOC: 29   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TypeVisitorRunnable1.java - 0% 0% 0%
coverage
 1    package edu.rice.cs.dynamicjava.symbol.type;
 2   
 3    import edu.rice.cs.dynamicjava.symbol.*;
 4   
 5    /** An abstract void visitor over Type that provides a Runnable1 run method;
 6    * all visit methods are left unimplemented. */
 7    @SuppressWarnings("unused")
 8    public abstract class TypeVisitorRunnable1 implements edu.rice.cs.plt.lambda.Runnable1<Type>, TypeVisitor_void {
 9   
 10  0 public void run(Type that) {
 11  0 that.apply(this);
 12    }
 13   
 14   
 15    /** Process an instance of BooleanType. */
 16    public abstract void forBooleanType(BooleanType that);
 17   
 18    /** Process an instance of CharType. */
 19    public abstract void forCharType(CharType that);
 20   
 21    /** Process an instance of ByteType. */
 22    public abstract void forByteType(ByteType that);
 23   
 24    /** Process an instance of ShortType. */
 25    public abstract void forShortType(ShortType that);
 26   
 27    /** Process an instance of IntType. */
 28    public abstract void forIntType(IntType that);
 29   
 30    /** Process an instance of LongType. */
 31    public abstract void forLongType(LongType that);
 32   
 33    /** Process an instance of FloatType. */
 34    public abstract void forFloatType(FloatType that);
 35   
 36    /** Process an instance of DoubleType. */
 37    public abstract void forDoubleType(DoubleType that);
 38   
 39    /** Process an instance of NullType. */
 40    public abstract void forNullType(NullType that);
 41   
 42    /** Process an instance of SimpleArrayType. */
 43    public abstract void forSimpleArrayType(SimpleArrayType that);
 44   
 45    /** Process an instance of VarargArrayType. */
 46    public abstract void forVarargArrayType(VarargArrayType that);
 47   
 48    /** Process an instance of SimpleClassType. */
 49    public abstract void forSimpleClassType(SimpleClassType that);
 50   
 51    /** Process an instance of RawClassType. */
 52    public abstract void forRawClassType(RawClassType that);
 53   
 54    /** Process an instance of ParameterizedClassType. */
 55    public abstract void forParameterizedClassType(ParameterizedClassType that);
 56   
 57    /** Process an instance of IntersectionType. */
 58    public abstract void forIntersectionType(IntersectionType that);
 59   
 60    /** Process an instance of UnionType. */
 61    public abstract void forUnionType(UnionType that);
 62   
 63    /** Process an instance of VariableType. */
 64    public abstract void forVariableType(VariableType that);
 65   
 66    /** Process an instance of TopType. */
 67    public abstract void forTopType(TopType that);
 68   
 69    /** Process an instance of BottomType. */
 70    public abstract void forBottomType(BottomType that);
 71   
 72    /** Process an instance of VoidType. */
 73    public abstract void forVoidType(VoidType that);
 74   
 75    /** Process an instance of Wildcard. */
 76    public abstract void forWildcard(Wildcard that);
 77    }