How to make javadoc documentation available in JShell?

Viewed 789

I am using JShell to test a library for which I made classes, sources, and javadoc available through the class path like so:

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

Still, when double tab after a documented Java identifier I receive:

<no documentation found>

How does JShell expect the documentation?

1 Answers
Related