Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 26   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   
 7    public class ASTMethodDeclarator extends SimpleNode {
 8  1 public ASTMethodDeclarator(int id) {
 9  1 super(id);
 10    }
 11   
 12  731 public ASTMethodDeclarator(JavaParser p, int id) {
 13  731 super(p, id);
 14    }
 15   
 16  1023 public int getParameterCount() {
 17  1023 return this.jjtGetChild(0).jjtGetNumChildren();
 18    }
 19   
 20    /**
 21    * Accept the visitor. *
 22    */
 23  1720 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 24  1720 return visitor.visit(this, data);
 25    }
 26    }