Clover Coverage Report - PMD-3.8
Coverage timestamp: Sat May 5 2007 15:33:30 EST
3   21   1   1
0   12   1   3
3     1  
1    
 
  ASTForStatement       Line # 5 3 1 66.7% 0.6666667
 
  (45)
 
1    /* Generated By:JJTree: Do not edit this line. ASTForStatement.java */
2   
3    package net.sourceforge.pmd.ast;
4   
 
5    public class ASTForStatement extends SimpleJavaNode {
 
6  0 toggle public ASTForStatement(int id) {
7  0 super(id);
8    }
9   
 
10  81 toggle public ASTForStatement(JavaParser p, int id) {
11  81 super(p, id);
12    }
13   
14   
15    /**
16    * Accept the visitor. *
17    */
 
18  223 toggle public Object jjtAccept(JavaParserVisitor visitor, Object data) {
19  223 return visitor.visit(this, data);
20    }
21    }