Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 31   Methods: 5
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTConstructorDeclaration.java - 66.7% 80% 72.7%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTConstructorDeclaration.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTConstructorDeclaration extends AccessNode {
 6  1 public ASTConstructorDeclaration(int id) {
 7  1 super(id);
 8    }
 9   
 10  87 public ASTConstructorDeclaration(JavaParser p, int id) {
 11  87 super(p, id);
 12    }
 13   
 14  3 public int getParameterCount() {
 15  3 return ((ASTFormalParameters) jjtGetChild(0)).getParameterCount();
 16    }
 17   
 18   
 19    /**
 20    * Accept the visitor. *
 21    */
 22  222 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 23  222 return visitor.visit(this, data);
 24    }
 25   
 26  0 public void dump(String prefix) {
 27  0 System.out.println(collectDumpedModifiers(prefix));
 28  0 dumpChildren(prefix);
 29    }
 30   
 31    }