Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Eclipse and am using it currently to play with Java EE.

When using Ctrl+Space for types/functions from the regular Java libraries I get a full description (i.e. general description of the type, what are the arguments of the method for, etc.). However I don't get the same for Java EE types.

For example, when using Ctrl+Space on methods of the HttpSession class I get only names like "arg0" or "obj" and no description.

Is there some kind of a package I can install to remedy this?

share|improve this question

2 Answers

up vote 3 down vote accepted

I'd suggest downloading the javadocs and adding them in eclipse. (right click project > properties > java build path > libraries > expand the library > set Javadoc location)

share|improve this answer
Cute unicorn! BWUHAHAH! >:) – Pascal Thivent Apr 1 '10 at 8:25
@Pascal Thivent - yours is better, it has green :) – Bozho Apr 1 '10 at 8:48
I've done this with the sources mentioned by Oliver and it works (tnx!). Is there a way to do it in the general eclipse properties so the documentation/sources will be available for all projects, without me needing to fix each project by hand? – maayank Apr 1 '10 at 9:20
1  
@maayank Use Maven – Pascal Thivent Apr 1 '10 at 11:41
Mine is a punk unicorn! – Pascal Thivent Apr 1 '10 at 11:42

I think that's why Java EE defines a specification only, the implementation must then be done by the provider of your application server. javax.servlet.http.HttpSession e.g. is bundled in servlet.jar.

It you are using Tomcat as your application server, you could attach the java sources to your servlet.jar and then you can browse the source and read it's javadoc.

The source for the latest tomcat is here -> http://www.apache.org/dist/tomcat/tomcat-6/v6.0.26/src/apache-tomcat-6.0.26-src.zip

share|improve this answer
Can I attach the source to the servlet.jar for all the projects/workspace and not just one project? (i.e. somewhere in the eclipse settings) – maayank Apr 1 '10 at 11:30
if you used a library variable you could do it. Create a library with source added and add that to your projects. – Michael Wiles Apr 1 '10 at 19:52

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.