Peter Toye schrieb am 28.06.2019 um 16:41:
2) (This one may be a Java issue not a Netbeans one.) I can't find
the Javadoc for the Java 12 API. I tried setting the Javadoc URL to
https://docs.oracle.com/en/java/javase/12/docs/api/index.html but
this didn't work. When I last used Java over 3 years ago one could
download the entire API Javadoc as a Zip file, but this seems to have
disappeared. Can someone please tell me where to find it?
I couldn't find them either, so I am building them myself now
If you download OpenJDK from e.g. https://adoptopenjdk.net/ it contains a
src.zip file (inside the lib folder)
Unpack that, then you can generate the JavaDocs using:
javadoc -d docs -Xdoclint:none --expand-requires all --module-source-path src
--module=java.se
Where "src" is the folder into which you unpacked the sources.
(obviously using the javadoc tool from that JDK)
Thomas
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists