Reputation: 8376
I'm using Twitter4j for a Twitter Java client Java FX App. I downloaded the sources and included the .jar
to NetBeans after going to: Projects->Libraries->Add Jar/Folder
.
I'd like to include the JavaDoc for library but at site they only offer an html.
I've tried:
.jar
But got any good results. .
How can I achieve this?
Upvotes: 0
Views: 437
Reputation: 121720
On Maven Central, you can have the javadoc jar.
When listing the available files for version 2.1.4 there is a:
twitter4j-core-2.1.4-javadoc.jar
Netbeans should be able to download maven dependencies, including javadoc; at least, IDEA does.
Upvotes: 1