I've got a workspace with multiple RCP plugin projects.

We've set the target platform, so we can build against a standard set of plugins, but are not able to see source code and Javadoc for all the platform plugins.

The Windows -> Preferences -> Plug-in Development -> Target Platform -> Source Code Locations page doesn't seem to have any effect when I add the eclipse directory (it only allows you to add directories).

Copying the source jars from the eclipse directory into the target platform has a similar effect.

What am I doing wrong? How do I attach a set of Source jars to my target platform?

link|improve this question

56% accept rate
feedback

5 Answers

I had the same problem today. In my case I wanted to debug into the source of the plugin embedded jetty (org.mortbay.jetty_5.1.14.v200806031611.jar) which comes with Eclipse Equinox (OSGI) which is part of my eclipse target platform.

When debugged and wanted to go into any class inside a jetty package I always got the message that it is a class from Plugin-Dependencies and the source attachment cannot be modified.

I solved it like this:

  1. Switch to the Plugins View in Eclipse ( Window / Show View / Plugins)
  2. locate the bundle org.mortbay.jetty
  3. right click on that bundle and select "Import as" -> "Binary Project with linked content"

Now that Bundle shows up in your Package Explorer as a new Eclipse project, in my case org.mortbay.jetty.

Now right click on that new project in the package explorer and goto 'Properties / Java Build Path / Libraries'. You see the the jetty jar file there and if you expand this entry you can edit the 'Source Attachment' as usual. I pointed it to the downloaded Jetty Source code located in a completely different folder than my target platform which I am using for my project.

link|improve this answer
This works BEAUTIFULLY! I still don't know how to make it "permanent", i.e. I can have source traceability/javadoc without having that (third party) plugin open as a project in my workspace (so I can attach javadoc/sources to the individual JARs that make up that plugin). But considering that it works...and I only need the javadoc for development only anyway... For now it suits my purposes just fine! – Hendy Irawan Apr 10 '11 at 20:46
If someone could show how to make a "proper" Eclipse source plugin / Eclipse javadoc plugin (is there one?)... I'd be very interested! – Hendy Irawan Apr 10 '11 at 20:46
feedback

If you use Eclipse SDK bundles when building your target platform, you should be immediately provided with "Java Source Attachment" and "Javadoc Location" for each Eclipse plugin. For example, I used "Eclipse Platform SDK" (eclipse-platform-SDK-3.4.2-win32) as target space and when I display the "Source Code Locations page" that you mentionned, it is filled with "Source locations declared in the target platform". In the Eclise IDE, I can then see Eclipse core plugins source code and javadoc (in JFace packages for example).

Otherway, it is not so easy to add plugins source code locations but you can succeed it in 2 ways :

  • providing a "source plugin" (the easiest way if the plugin provider also supplies the source plugin) into the target platform, as an ordinary plugin (PDE will recognise it)
  • providing an additional source location (not the easy way ...)

You can find more information about Target Source Code Locations in you Eclipse Help, in the following topic : Plug-in Development Environment Guide > Tools > Preferences > Target Platform Preferences > Source Code Locations

link|improve this answer
feedback

I can modify the target platform at runtime, using the -install runtime option. Keep the targetPlatform as the eclipse platform.

However, this loses a lot of the benefits of using a target platform in the first place - i.e. compile time safety.

link|improve this answer
feedback

I can't find Source Code Locations page on eclipse 3.5

Is there a way to attach source code to my target platform plugins?

link|improve this answer
Same problem here with Eclipse 3.5 (Ganymede) or Eclipse 3.6 (Helios) – paulgreg Sep 24 '10 at 6:48
Question asked here : stackoverflow.com/questions/3784977/… – paulgreg Sep 24 '10 at 7:23
feedback

The IDE fails to load the source when doing dynamic source code selection during class/method drill down. In Ecliopse 3.4.x it works correctly, 3.5.x does not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.