Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 23   Methods: 3
NCLOC: 14   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTUnaryExpression.java - 60% 66.7% 62.5%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTUnaryExpression.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTUnaryExpression extends SimpleJavaNode {
 6  0 public ASTUnaryExpression(int id) {
 7  0 super(id);
 8  0 setDiscardable();
 9    }
 10   
 11  2280 public ASTUnaryExpression(JavaParser p, int id) {
 12  2280 super(p, id);
 13  2280 setDiscardable();
 14    }
 15   
 16    /**
 17    * Accept the visitor. *
 18    */
 19  26 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 20  26 return visitor.visit(this, data);
 21    }
 22   
 23    }