Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 21   Methods: 3
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTTypeDeclaration.java - 100% 100% 100%
coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTTypeDeclaration.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTTypeDeclaration extends SimpleNode {
 6  2 public ASTTypeDeclaration(int id) {
 7  2 super(id);
 8    }
 9   
 10  924 public ASTTypeDeclaration(JavaParser p, int id) {
 11  924 super(p, id);
 12    }
 13   
 14   
 15    /**
 16    * Accept the visitor. *
 17    */
 18  2218 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 19  2218 return visitor.visit(this, data);
 20    }
 21    }