View javadoc from interface on hover an implemented method
Answered
My case is that I create a java class that implements an interface. I don't have javadoc for my class but the interface has very good documentation.
When I am working on the logic of those methods, I want to know what are those methods used for.
I know I can use "Quick Documentation" hotkey. But is it possible to view the javadoc from the interface by just hover over the method name?
Please sign in to leave a comment.
Check this setting:
https://i.imgur.com/y9dnx4k.png
I already have this setting enabled.
Is it possible to view the doc by hovering somewhere in this case?
public class Runny implements Runnable {
@Override
public void run() {
}
}
Like that?
https://i.imgur.com/RWTC37a.png
Yes! But on the "run()" function.
Here is the bug for that: https://youtrack.jetbrains.com/issue/IDEA-262543
Feel free to watch it in order to be notified once it has updates. See this article if you are not familiar with YouTrack.
Thanks for your help! I will watch it for updates.