Files
VV-ISTIC-TP2/exercises/extending-pmd.md
Romain Lefeuvre 7b185c9c0c 2025 init
2025-11-18 14:41:54 +01:00

994 B

Extending PMD

Use XPath to define a new rule for PMD to prevent complex code. The rule should detect the use of three or more nested if statements in Java programs so it can detect patterns like the following:

if (...) {
    ...
    if (...) {
        ...
        if (...) {
            ....
        }
    }

}

Notice that the nested ifs may not be direct children of the outer ifs. They may be written, for example, inside a for loop or any other statement. Write below the XML definition of your rule.

You can find more information on extending PMD in the following link: https://pmd.github.io/latest/pmd_userdocs_extending_writing_rules_intro.html, as well as help for using pmd-designer here.

Use your rule with different projects and describe you findings below. See the instructions for suggestions on the projects to use.

Answer