Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
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  983 public ASTMethodDeclarator(JavaParser p, int id) {
 12  983 super(p, id);
 13    }
 14   
 15  1399 public int getParameterCount() {
 16  1399 return this.jjtGetChild(0).jjtGetNumChildren();
 17    }
 18   
 19    /**
 20    * Accept the visitor. *
 21    */
 22  2374 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 23  2374 return visitor.visit(this, data);
 24    }
 25    }