How to integrate javadoc with a project

my codes can be shown as follows, however when running this network of beans it says that the corresponding javadocs are not in the libraries. Please help me solve this problem. how can i integrate javadocs with library.please answer me soon

import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.core.CvType; import org.opencv.core.Scalar; 
+1
source share
1 answer

Send this link to get javadoc . But compared to the previous version (OpenCV 2.4.10), it is not built well.

In the NetBeans IDE,

  • Click on the "Tools" tab.
  • Choose Java Platforms
  • You will see the Java Platform Manger Window
  • Select the Javadoc Tab
  • on the right side, select the Add URl button in the "ADD ZIP / Folder" section
  • Copy and paste the Javdoc URL mentioned above.

Click

And for more instructions on downloading javadoc to read offline, contact

Hope this helps!

0
source

Source: https://habr.com/ru/post/988688/


All Articles