Reputation: 681
I'm using the Akka Java API together with Eclipse (Kepler Service Release 2) + Maven. I can jump right into the scala class from the Java Editor, but I'm not able to see the documentation on hover (see example picture). Is there any way to include the documentation on hover?
On hover:
The documentation it should display:
Upvotes: 31
Views: 514
Reputation: 2764
When using maven convention, a library is bundled as 'group.artifact.version.jar' for binary, 'group.artifact.version-sources.jar' for source code and 'group.artifact.version-javadoc.jar' for docs. If you don't see the javadoc, then it means that the '-javadoc.jar' for that artifact is not pulled to local, in your case for the akka artifact. If you right click on the library, you should find an option to download javadoc under 'Maven' option. Once you download, you can see the javadoc.
Upvotes: 1