How to make accessible Javadoc documentation available in JShell?

I use JShell to test the library, for which I made classes, sources, and javadoc available through the class path as follows:

jshell --class-path library-javadoc.jar:library-sources.jar:library-jar-with-dependencies.jar

However, when the double tab after the documented Java identifier I get:

<no documentation found>

How does JShell expect documentation?

+4
source share
1 answer

This seems to be an unresolved issue: https://bugs.openjdk.java.net/browse/JDK-8186876

+4
source

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


All Articles