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

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



AbstractNaming

AbstractNaming

Abstract classes should be named ‘AbstractXXX’.

                    
//ClassOrInterfaceDeclaration
 [@Abstract='true' and @Interface='false']
 [not (starts-with(@Image,'Abstract'))]
|
//ClassOrInterfaceDeclaration
 [@Abstract='false']
 [$strict='true']
 [starts-with(@Image, 'Abstract')]
                    

Example(s):


public abstract class Foo { // should be AbstractFoo
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy