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
ASTCommentTag.java - 33.3% 33.3% 33.3%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTCommentTag.java */
 2   
 3    package net.sourceforge.pmd.jsp.ast;
 4   
 5    public class ASTCommentTag extends SimpleNode {
 6  0 public ASTCommentTag(int id) {
 7  0 super(id);
 8    }
 9   
 10  6 public ASTCommentTag(JspParser p, int id) {
 11  6 super(p, id);
 12    }
 13   
 14   
 15    /**
 16    * Accept the visitor. *
 17    */
 18  0 public Object jjtAccept(JspParserVisitor visitor, Object data) {
 19  0 return visitor.visit(this, data);
 20    }
 21    }