Can eclipse show the entire javadoc? i.e. all methods (and their descriptions), when i highlight an object reference?
for example, if I do System, it shows me
java.lang.System
The System class contains several useful class fields and methods. It cannot be instantiated.
Among the facilities provided by the System class are standard input, standard output, and error output streams; access to externally defined properties and environment variables; a means of loading files and libraries; and a utility method for quickly copying a portion of an array.
Since: JDK1.0
but that tells me very litte about what I can do with that. yes, I can use the intelligent dot completion, but that seems a bit cumbersome.
any pointers would be appreciated.