Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 31   Methods: 5
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTSwitchLabel.java - 80% 80% 80%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTSwitchLabel.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTSwitchLabel extends SimpleJavaNode {
 6  0 public ASTSwitchLabel(int id) {
 7  0 super(id);
 8    }
 9   
 10  60 public ASTSwitchLabel(JavaParser p, int id) {
 11  60 super(p, id);
 12    }
 13   
 14    private boolean isDefault;
 15   
 16  18 public void setDefault() {
 17  18 isDefault = true;
 18    }
 19   
 20  17 public boolean isDefault() {
 21  17 return isDefault;
 22    }
 23   
 24   
 25    /**
 26    * Accept the visitor. *
 27    */
 28  181 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 29  181 return visitor.visit(this, data);
 30    }
 31    }