I have just installed MyEclipse (which is wonderful) but there is a problem with the JavaDoc tooltip.
When editing a JSP file, in the Design pane, if I begin entering some Java code (between appropriate scriptlet delimiters), I would expect the javadoc to appear for methods of an object. However, instead of javadoc I get what looks like CSS (Cascading Style Sheet definitions) or something.
For instance, if I have the following code
<%= new Date().getTime() %>
and I place the cursor at the beginning of the getTime() method, and hit cntrl-space, I get a list of methods defined on Date class. So far so good. But if I highlight one of those methods, instead of seeing its javadoc I get this CSS view.
It should be showing the Javadoc of each method, just like it does when I do the same thing on a Java source file.
Is there a setting I need to change, or some tweak to get it to work?
Thanks in advance.