Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 40   Methods: 7
NCLOC: 25   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTPrimitiveType.java - 57.1% 57.1% 57.1%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTPrimitiveType.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTPrimitiveType extends SimpleJavaNode implements Dimensionable {
 6   
 7  0 public ASTPrimitiveType(int id) {
 8  0 super(id);
 9    }
 10   
 11  711 public ASTPrimitiveType(JavaParser p, int id) {
 12  711 super(p, id);
 13    }
 14   
 15  1 public boolean isBoolean() {
 16  1 return getImage().equals("boolean");
 17    }
 18   
 19    /**
 20    * Accept the visitor. *
 21    */
 22  1641 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 23  1641 return visitor.visit(this, data);
 24    }
 25   
 26    private int arrayDepth;
 27   
 28  0 public void bumpArrayDepth() {
 29  0 arrayDepth++;
 30    }
 31   
 32  36 public int getArrayDepth() {
 33  36 return arrayDepth;
 34    }
 35   
 36  0 public boolean isArray() {
 37  0 return arrayDepth > 0;
 38    }
 39   
 40    }