Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 31   Methods: 4
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTBlockStatement.java - 100% 100% 100%
coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTBlockStatement.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTBlockStatement extends SimpleJavaNode {
 6  4 public ASTBlockStatement(int id) {
 7  4 super(id);
 8    }
 9   
 10  2043 public ASTBlockStatement(JavaParser p, int id) {
 11  2043 super(p, id);
 12    }
 13   
 14   
 15    /**
 16    * Accept the visitor. *
 17    */
 18  5966 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 19  5966 return visitor.visit(this, data);
 20    }
 21   
 22    /**
 23    * Tells if this BlockStatement is an allocation statement.
 24    * This is done by
 25    *
 26    * @return the result of !findChildrenOfType(ASTAllocationExpression.class).isEmpty()
 27    */
 28  13 public final boolean isAllocation() {
 29  13 return !findChildrenOfType(ASTAllocationExpression.class).isEmpty();
 30    }
 31    }