Class ExcessivePublicCountRule

  • All Implemented Interfaces:
    AstVisitor<Object,​Object>, JavaParserVisitor, JavaVisitor<Object,​Object>, PropertySource, Rule

    public class ExcessivePublicCountRule
    extends net.sourceforge.pmd.lang.java.rule.internal.AbstractJavaCounterCheckRule<ASTAnyTypeDeclaration>
    Rule attempts to count all public methods and public attributes defined in a class.

    If a class has a high number of public operations, it might be wise to consider whether it would be appropriate to divide it into subclasses.

    A large proportion of public members and operations means the class has high potential to be affected by external classes. Futhermore, increased effort will be required to thoroughly test the class.

    Author:
    aglover
    • Constructor Detail

      • ExcessivePublicCountRule

        public ExcessivePublicCountRule()
    • Method Detail

      • defaultReportLevel

        protected int defaultReportLevel()
        Specified by:
        defaultReportLevel in class net.sourceforge.pmd.lang.java.rule.internal.AbstractJavaCounterCheckRule<ASTAnyTypeDeclaration>
      • isViolation

        protected boolean isViolation​(ASTAnyTypeDeclaration node,
                                      int reportLevel)
        Specified by:
        isViolation in class net.sourceforge.pmd.lang.java.rule.internal.AbstractJavaCounterCheckRule<ASTAnyTypeDeclaration>