Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 35   Methods: 4
NCLOC: 24   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTTypeDeclaration.java 83.3% 88.9% 75% 84.2%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTTypeDeclaration.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    import net.sourceforge.pmd.Rule;
 6   
 7    public class ASTTypeDeclaration extends SimpleJavaNode implements CanSuppressWarnings {
 8  0 public ASTTypeDeclaration(int id) {
 9  0 super(id);
 10    }
 11   
 12  1213 public ASTTypeDeclaration(JavaParser p, int id) {
 13  1213 super(p, id);
 14    }
 15   
 16   
 17  495 public boolean hasSuppressWarningsAnnotationFor(Rule rule) {
 18  495 for (int i = 0; i < jjtGetNumChildren(); i++) {
 19  495 if (jjtGetChild(i) instanceof ASTAnnotation) {
 20  4 ASTAnnotation a = (ASTAnnotation) jjtGetChild(i);
 21  4 if (a.suppresses(rule)) {
 22  4 return true;
 23    }
 24    }
 25    }
 26  491 return false;
 27    }
 28   
 29    /**
 30    * Accept the visitor. *
 31    */
 32  2961 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 33  2961 return visitor.visit(this, data);
 34    }
 35    }