| Article: |
Custom PMD Rules | |
| Subject: | PMD CUSTOM XPATH RULE | |
| Date: | 2005-02-24 01:18:45 | |
| From: | PravinD | |
|
I am attempting to create a couple of PMD rules.
|
||
Showing messages 1 through 1 of 1.
| Article: |
Custom PMD Rules | |
| Subject: | PMD CUSTOM XPATH RULE | |
| Date: | 2005-02-24 01:18:45 | |
| From: | PravinD | |
|
I am attempting to create a couple of PMD rules.
|
||
Showing messages 1 through 1 of 1.
Cool, OK, let's see:
> occurences of String objects and throws a
> warning if the names of the objects do not
> start with the letters 'str'
Hm. The XPath rule below will catch field declarations of Strings that don't start with "str":
//FieldDeclaration
[
Type/Name[@Image='String']
and not(starts-with(VariableDeclarator/VariableDeclaratorId/@Image, 'str'))
]
and you can write similar ones for parameters and local variable declarations.
> checks for open connection objects and
> throws a warning if these objects remain
> unclosed.
Check out the CloseConnection rule here:
http://pmd.sourceforge.net/rules/design.html
Yours,
Tom