views:

16

answers:

1

Hi,

maybe the answer is easy, but I'm unable to find information about the topic on google.

I've downloaded the MacWidgets Library from http://code.google.com/p/macwidgets/.

On the site you can also find the javadocs and I would like to integrate this into Netbeans to provide me with information about classes / methods while typing like on the normal java api.

Is this somehow possible? Or do I have to download the source, create a project out of it and reference the project instead of the libraries?

+1  A: 

I confirmed with the latest NetBeans IDE 7.0 M2 version released on http://www.netbeans.org They have provided support for URL configuration for the Javadoc.

Steps to use this feature

  1. First create a library for the MacWidgets JAR files using Tools > Libraries dialog box.
  2. For the created library set the URL of the Javadoc using the Javadoc tab and URL button, in this case the URL shall be http://exploding-pixels.com/google_code/javadoc_0.9.5/
  3. Now when any class from this library is referred in the Java code editor NetBeans will show Javadoc in below the context sensitive code completion as well as in the javadoc window if it is open.

This feature is recently added and only available from NetBeans IDE 7.0 M2, release and onwards. This feature is still having some issues and opening Javadoc directly by right clicking the JAR node in the project panel library node does not work yet.

with regards
Tushar Joshi, Nagpur

Tushar Joshi
Works, thanks! :)
yan.kun