Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 21   Methods: 3
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTSingleMemberAnnotation.java - 66.7% 66.7% 66.7%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTSingleMemberAnnotation.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5   
 6    public class ASTSingleMemberAnnotation extends SimpleJavaNode {
 7  0 public ASTSingleMemberAnnotation(int id) {
 8  0 super(id);
 9    }
 10   
 11  13 public ASTSingleMemberAnnotation(JavaParser p, int id) {
 12  13 super(p, id);
 13    }
 14   
 15    /**
 16    * Accept the visitor. *
 17    */
 18  30 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 19  30 return visitor.visit(this, data);
 20    }
 21    }