Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 17   Methods: 1
NCLOC: 7   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
LongMethodRule.java - 100% 100% 100%
coverage
 1    /**
 2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 3    */
 4    package net.sourceforge.pmd.rules.design;
 5   
 6    import net.sourceforge.pmd.ast.ASTMethodDeclaration;
 7   
 8    /**
 9    * This rule detects when a method exceeds a certain
 10    * threshold. i.e. if a method has more than x lines
 11    * of code.
 12    */
 13    public class LongMethodRule extends ExcessiveLengthRule {
 14  13 public LongMethodRule() {
 15  13 super(ASTMethodDeclaration.class);
 16    }
 17    }