Is it possible to view javadoc for an implementation rather than an interface in IntelliJ IDEA?

I am using a third-party library in an Intellij IDEA project. When I have a method name carriage, I can press Ctrl-Q to get javadoc in the "Quick Documentation Lookup" window, but only the method signature is displayed. This is because the type of the object containing this method is a javadoc no-comment interface. The actual implementation of the object has javadoc comments. If I pass the object to an implementation type, javadoc comments will appear. Can I do something in IntelliJ so that it works without making any changes to the code?

+3
source share
1 answer

, . :

- , ? , , , , , , , 90% {@inheritDoc} , .

, : , (, , ), , . , ?

, , (. ), , , , API , , API.

+1

Source: https://habr.com/ru/post/1746842/


All Articles