Reports unresolved references inside Javadoc comments.

In the following example, the someParam parameter is missing, so it will be highlighted:


class A {
    /**
     * @param someParam description
     **/
    void foo() {
    }
}

Disable the Report inaccessible symbols option to ignore the tags that reference missing method parameters, classes, fields and methods.