View Javadoc
1 package net.sourceforge.pmd.rules.design; 2 3 import net.sourceforge.pmd.ast.ASTMethodDeclaration; 4 5 /*** 6 * This rule detects when a method exceeds a certain 7 * threshold. i.e. if a method has more than x lines 8 * of code. 9 */ 10 public class LongMethodRule extends ExcessiveLengthRule { 11 public LongMethodRule() { 12 super(ASTMethodDeclaration.class); 13 } 14 }

This page was automatically generated by Maven