diegoaguilar
diegoaguilar

Reputation: 8376

Adding javadoc to a library included as .jar in NetBeans

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:

But got any good results. .

How can I achieve this?

Upvotes: 0

Views: 437

Answers (1)

fge
fge

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

Related Questions