How to attach source or JavaDoc in eclipse for any jar file e.g. JavaFX?

前端 未结 13 1321
野趣味
野趣味 2020-11-27 14:31

Presently I\'m working with JavaFX. Whenever I hover over a method of JavaFX its gives me the following error:

\'Note: This element neither has attached sourc

相关标签:
13条回答
  • 2020-11-27 14:58

    You could specify the online Javadoc location for a particular JAR in Eclipse. This saved my day when I wasn't able to find any downloadable Javadocs for Kafka.

    1. In the Package Explorer, right click on the intended JAR (under the project's Referenced Libraries or Maven Dependences or anything as such) and click on Properties.
    2. Click on Javadoc Location.
    3. In the Javadoc location path field under Javadoc URL, enter the URL of the online Javadocs, which most likely ends with /<version>/javadoc/. For example, Kafka 2.3.0's Javadocs are located at http://www.apache.org/dist/kafka/2.3.0/javadoc/ (you might want to change https to http in your URL, as it raised an invalid location warning after clicking on Validate... for me).
    0 讨论(0)
  • 2020-11-27 14:58

    To attach the Java source code with Eclipse,

    When you install the JDK, you must have selected the option to install the Java source files too. This will copy the src.zip file in the installation directory. In Eclipse, go to Window -> Preferences -> Java -> Installed JREs -> Add and choose the JDK you have in your system. Eclipse will now list the JARs found in the dialog box. There, select the rt.jar and choose Source Attachment. By default, this will be pointing to the correct src.zip. If not, choose the src.zip file which you have in your java installation directory. java source attach in eclipse Similarly, if you have the javadoc downloaded in your machine, you can configure that too in this dialog box.

    0 讨论(0)
  • 2020-11-27 15:04

    Alternatively you can also,

    1) Navigate to that method by Ctrl+Click on the method. The new tab/window will opened with text "Source not found" and button "Attach Source.." in it
    2) Click the button "Attach Source.."
    3) New window pops up. Click the button "External Folder"
    4) Locate the JavaFX javadoc folder. If you are on Windows with default installation settings, then the folder path is C:\Program Files\Oracle\JavaFX 2.0 SDK\docs

    0 讨论(0)
  • 2020-11-27 15:05

    This trick worked for me in Eclipse Luna (4.4.2): For a jar file I am using (htsjdk), I packed the source in a separate jar file (named htsjdk-2.0.1-src.jar; I could do this since htsjdk is open source) and stored it in the lib-src folder of my project. In my own Java source I selected an element I was using from the jar and hit F3 (Open declaration). Eclipse opened the class file and showed the button "Attach source". I clicked the button and pointed to the src jar file I had just put into the lib-src folder. Now I get the Javadoc when hovering over anything I’m using from the jar.

    0 讨论(0)
  • 2020-11-27 15:06

    In addition to the answer of @dhroove (would have written a comment if I had 50 rep...)

    The link has changed to: http://docs.oracle.com/javafx/2/api/

    At least my eclipse wasn't able to use the link from him.

    0 讨论(0)
  • 2020-11-27 15:10

    I couldn't get the "Attach source..." method to work either, and I tried many different ways. The Javadocs for JavaFX are installed in Program Files\Oracle\JavaFX 2.x SDK\docs. Another way to install the Javadocs is:

    1. Right click on the project, select Properties
    2. Select Libraries on the right side of the tab
    3. At the right top side of the tab, you may see "Default JavaFX Platform" or something similar. Click on the Manage Platforms button. (You can also install this default platform from here if you haven't got this already).
    4. In the Java Platform Manager tab which appears, select "Default JavaFX Platform" on the left side, and then click on the JavaFX tab on the right side of the window.
    5. One of the entry fields is labeled "JavaFX Javadoc". Click the "Browse" button next to this field and browse to the installed docs file mentioned above.

    Hope this helps some people who were as puzzled as I was.

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