Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to search inside one particular source attachment in Eclipse?

Currently what I am doing is:

  1. Looking at the jar file path of the binary jar that I'm interested in the source code of
  2. Working out in my head what the corresponding sources jar filename is (it's a predictable filename)
  3. Making a new directory
  4. Unzipping the sources jar to that directory
  5. Searching that directory in Emacs (yes, Emacs - this means I don't have to add it as a new project in Eclipse)

There must be an easier way!

share|improve this question
Could you mean "Open Type" ("Ctrl+Shift+T" on windows)? – EthanB Aug 23 '12 at 9:42
May help: stackoverflow.com/questions/122160/… – Baldrick Aug 23 '12 at 9:43
No, I want to SEARCH inside an ATTACHED SOURCE JAR. – Robin Green Aug 23 '12 at 9:43

2 Answers

up vote 4 down vote accepted
+50

Is there a way to search inside one particular source attachment in Eclipse?

The answer to your question is: no, not directly. See Eclipse bugs #199994 and #23341.

I hope the bounty is meant to be for the correct answer, even though it might not be the answer you had hoped for.

A workaround you can always use if at least you want to avoid using two tools (Eclipse vs. Emacs) is to

  • create a dummy project, e.g. "JDK6 (dummy)",
  • deactivate the Java builder in its project properties so as to avoid an automatic build you do not want and which might fail due to missing dependencies anyway,
  • unzip the source attachment (e.g. source.zip) into the dummy project's src folder,
  • select the project or one of its packages in package explorer and
  • search happily via Ctrl-H using text or Java search, maybe using the search option "Scope: Selected resources" (attention: initial indexing for big sources like JDK during the very first search action can take a while, the next time it will be much faster).

I just tested this, and it works nicely. :-)

Optionally you may even select the dummy project's src folder as the source location for your library. This could speed up things like "Open declaration" via F3 in comparison with unzipping a source JAR/ZIP.

share|improve this answer

Yes, you can do this with the m2eclipse plugin in conjunction with a Java Maven project. A demonstration of this in action starts at around 2:30 in this video. Once you have the source code downloaded, you can search the source with the normal Eclipse search function under:

Search -> File... -> File Search.

If you need an nice intro to Maven, Eclipse, and the m2eclipse plugin check out this link.

share|improve this answer
How do I select which source attachment to search inside? – Robin Green Sep 5 '12 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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