Christian
Christian

Reputation: 6430

Find methods without JavaDoc in IntelliJ?

In IntelliJ, is there a way to get a list of all methods without JavaDoc for a certain class?

A package?

A module?

A project?

Upvotes: 16

Views: 3359

Answers (1)

Darek Kay
Darek Kay

Reputation: 16669

Go to Settings > Editor > Inspections > Javadoc issues > Declaration has Javadoc problems.

On the right side you can configure the scope (package, class, method, ...) and the visibility (public, private, ...) to show warnings for missing JavaDocs.

Finally run Analyze > Run inspection by name > Declaration has Javadoc problems to search for all specified missing JavaDocs.

Upvotes: 21

Related Questions