How do I attach source code locations to plugins in my Eclipse RCP target platform? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:18:43Zhttp://stackoverflow.com/feeds/question/241131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor0How do I attach source code locations to plugins in my Eclipse RCP target platform?jamesh2008-10-27T19:29:28Z2009-10-19T22:24:52Z
<p>I've got a workspace with multiple RCP plugin projects.</p>
<p>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.</p>
<p>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). </p>
<p>Copying the source jars from the eclipse directory into the target platform has a similar effect.</p>
<p>What am I doing wrong? How do I attach a set of Source jars to my target platform?</p>
http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor/241200#2412000Answer by jamesh for How do I attach source code locations to plugins in my Eclipse RCP target platform?jamesh2008-10-27T19:55:16Z2008-10-27T19:55:16Z<p>I can modify the target platform at runtime, using the <code>-install</code> runtime option. Keep the targetPlatform as the eclipse platform.</p>
<p>However, this loses a lot of the benefits of using a target platform in the first place - i.e. compile time safety.</p>
http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor/885076#8850761Answer by JM.D for How do I attach source code locations to plugins in my Eclipse RCP target platform?JM.D2009-05-19T21:17:32Z2009-05-19T21:17:32Z<p>If you use Eclipse <strong>SDK</strong> 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).</p>
<p>Otherway, it is not so easy to add plugins source code locations but you can succeed it in 2 ways :</p>
<ul>
<li>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)</li>
<li>providing an additional source location (not the easy way ...)</li>
</ul>
<p>You can find more information about Target Source Code Locations in you Eclipse Help, in the following topic :
<em>Plug-in Development Environment Guide > Tools > Preferences > Target Platform Preferences > Source Code Locations</em></p>
http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor/1119751#11197510Answer by lucas for How do I attach source code locations to plugins in my Eclipse RCP target platform?lucas2009-07-13T14:24:03Z2009-07-13T14:24:03Z<p>I can't find Source Code Locations page on eclipse 3.5</p>
<p>Is there a way to attach source code to my target platform plugins?</p>
http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor/1591473#15914730Answer by malcolm for How do I attach source code locations to plugins in my Eclipse RCP target platform?malcolm2009-10-19T22:24:52Z2009-10-19T22:24:52Z<p>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. </p>