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?
Ctrl+Alt+Shift+N : finds a symbol. In IntelliJ IDEA, a symbol is any code element such as method, field, class, constant, and so on. Ctrl+Shift+A : finds an action by name. You can find any action even if it doesn't have a mapped shortcut or appear in the menu.
Go to Project > Properties > Java Build Path > Libraries and Choose . jar file which has missing Javadoc>(You should see Javadoc location: (None)) Click Edit and Provide Javadoc location file and press OK.
View Javadocs in the editorHover the mouse over the necessary symbol in the editor. Place the caret at the symbol and press Ctrl+Q (View | Quick Documentation). Press Ctrl+Q again to open this documentation in the Documentation tool window.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With