Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 20   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    public class ASTSingleMemberAnnotation extends SimpleJavaNode {
 6  0 public ASTSingleMemberAnnotation(int id) {
 7  0 super(id);
 8    }
 9   
 10  16 public ASTSingleMemberAnnotation(JavaParser p, int id) {
 11  16 super(p, id);
 12    }
 13   
 14    /**
 15    * Accept the visitor. *
 16    */
 17  39 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 18  39 return visitor.visit(this, data);
 19    }
 20    }