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