1

I successfully added Lucene's JavaDoc (a jar file) but failed with JUnit's JavaDoc since it's a directory so I need help.

Thanks.

JatSing
  • 4,857
  • 16
  • 55
  • 65

1 Answers1

0

Just add the path to the javadoc directory, like:

d:\dev\junit4.10\javadoc\
CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
  • It works fine if you will try to view External JavaDoc (Shift+F1) for the classes that are actually available in this directory, for example `org.junit.Assert` will work, but `junit.framework.Assert` will not work as there is no documentation available for this class in the `javadoc` directory. So double check that you have appropriate classes imported. – CrazyCoder Dec 29 '11 at 23:57
  • Can I make a jar file like Lucene's javadoc from that javadoc directory ? – JatSing Dec 30 '11 at 07:06
  • Yes, you can, but it's not necessary. – CrazyCoder Dec 30 '11 at 09:38