Reputation: 6430
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
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