Netbeans says javadocs not found

后端 未结 2 720
深忆病人
深忆病人 2020-12-09 22:19

I have some problems with Netbeans IDE. I installed v. 7.0.1, but now the pop-up windows of the javadoc say:

Javadoc not found. Either Javadoc          


        
相关标签:
2条回答
  • Go to Tools -> Java Platforms

    Select the platform that you want and go to the javadoc tab and the url to the javadocs. either http://docs.oracle.com/javase/6/docs/api/ or http://docs.oracle.com/javase/7/docs/api/

    enter image description here

    0 讨论(0)
  • 2020-12-09 22:36

    I believe JDK include javadoc in it But something went wrong either at the time of installation or later. So I solved this issue using these steps:
    Goto

    Tools >> Analyze Javadoc  
    

    An Analyzer tab will appear with the method/s that you defined and have no javadoc.
    Select its checkbox and Fix Selected Button will enable press that button and problem is now gone.
    In my case removeAllRows() is the method that has no javadoc.
    For further check this image

    .
    It does not create missing javadoc for your own methods But also fix javadoc for predefined methods.
    If this does not solve your problem than you should try adding javadoc manually.

    0 讨论(0)
提交回复
热议问题