Reputation: 20167
In Eclipse, when I mouse hover over a built-in method, it displays a method definition including stuff like what the method does, input objects, return objects etc.
If I have a yellow line (warning) under the method I'm trying to use, I can't get the mouse-over to show the definition.
If I try hitting F3, I get a "The Jar of this class file belongs to container "Android 1.6" blah blah blah."
How do I show the definition of the method I am using when there is a warning?
Upvotes: 2
Views: 1354
Reputation: 6114
Those informations are named "javadoc". To show it, juste type <alt+shift+Q then J>
or go in menu Window > Show View > Javadoc
Upvotes: 1