Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 20   Methods: 3
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTAnnotationTypeDeclaration.java - 100% 100% 100%
coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTAnnotationTypeDeclaration.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTAnnotationTypeDeclaration extends AccessNode {
 6  1 public ASTAnnotationTypeDeclaration(int id) {
 7  1 super(id);
 8    }
 9   
 10  2 public ASTAnnotationTypeDeclaration(JavaParser p, int id) {
 11  2 super(p, id);
 12    }
 13   
 14   
 15    /** Accept the visitor. **/
 16  3 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 17  3 return visitor.visit(this, data);
 18    }
 19   
 20    }