1

Before you close this question as a duplicate: I am very well aware of answers like this.

However, the Quick Doc only provides the type information, like Class and so on.

This is because the jars we have no JavaDoc in them (When I Ctrl + B into them they don't have any JavaDoc).

With jars, I don't mean some internal ones, but rather Objects like String or List, which would provide a JavaDoc in Netbeans, but in IntelliJ that Doc is just missing.

Can you enable it somewhere that JavaDoc gets loaded with the jars?

MauriceNino
  • 6,214
  • 1
  • 23
  • 60

1 Answers1

1

Quick Documentation feature works using the sources attached to the JDK configuration like this:

sources

Try to reinstall the JDK, remove it from IntelliJ IDEA and add it again. Double check src.zip is added in the Sourcepath.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904