Back to Intellij Community

JavadocReference

java/java-impl/resources/inspectionDescriptions/JavadocReference.html

2025.3-rc-2385 B
Original Source

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.