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