All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.report.rules.pmd.UncommentedEmptyConstructor.html Maven / Gradle / Ivy



UncommentedEmptyConstructor


UncommentedEmptyConstructor

Uncommented Empty Constructor finds instances where a constructor does not contain statements, but there is no comment. By explicitly commenting empty constructors it is easier to distinguish between intentional (commented) and unintentional empty constructors.

This rule is defined by the following XPath expression:

    
//ConstructorDeclaration[@Private='false'][count(BlockStatement) = 0 and ($ignoreExplicitConstructorInvocation = 'true' or not(ExplicitConstructorInvocation)) and @containsComment = 'false']
 
             

Example:

                
  
public Foo() {
  super();
}
 
      
            

This rule has the following properties:

NameDefault valueDescription
ignoreExplicitConstructorInvocation Ignore explicit constructor invocation when deciding whether constructor is empty or not




© 2015 - 2025 Weber Informatics LLC | Privacy Policy