Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 21   Methods: 3
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTWhileStatement.java - 66.7% 66.7% 66.7%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTWhileStatement.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTWhileStatement extends SimpleJavaNode {
 6  0 public ASTWhileStatement(int id) {
 7  0 super(id);
 8    }
 9   
 10  29 public ASTWhileStatement(JavaParser p, int id) {
 11  29 super(p, id);
 12    }
 13   
 14   
 15    /**
 16    * Accept the visitor. *
 17    */
 18  89 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 19  89 return visitor.visit(this, data);
 20    }
 21    }