Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 36   Methods: 6
NCLOC: 23   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTAssignmentOperator.java 0% 71.4% 83.3% 66.7%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTAssignmentOperator.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTAssignmentOperator extends SimpleJavaNode {
 6  2 public ASTAssignmentOperator(int id) {
 7  2 super(id);
 8    }
 9   
 10  231 public ASTAssignmentOperator(JavaParser p, int id) {
 11  231 super(p, id);
 12    }
 13   
 14    private boolean isCompound;
 15   
 16  18 public void setCompound() {
 17  18 isCompound = true;
 18    }
 19   
 20  94 public boolean isCompound() {
 21  94 return this.isCompound;
 22    }
 23   
 24   
 25    /**
 26    * Accept the visitor. *
 27    */
 28  686 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 29  686 return visitor.visit(this, data);
 30    }
 31   
 32  0 public void dump(String prefix) {
 33  0 System.out.println(toString(prefix) + ":" + getImage() + (isCompound ? "(compound)" : "(simple)"));
 34  0 dumpChildren(prefix);
 35    }
 36    }