Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
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 SimpleNode {
 6  0 public ASTSwitchLabel(int id) {
 7  0 super(id);
 8    }
 9   
 10  39 public ASTSwitchLabel(JavaParser p, int id) {
 11  39 super(p, id);
 12    }
 13   
 14    private boolean isDefault;
 15   
 16  12 public void setDefault() {
 17  12 isDefault = true;
 18    }
 19   
 20  13 public boolean isDefault() {
 21  13 return isDefault;
 22    }
 23   
 24   
 25    /**
 26    * Accept the visitor. *
 27    */
 28  98 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 29  98 return visitor.visit(this, data);
 30    }
 31    }