Class descriptions are currently read with javap command and unfortunately it doesn't print out parameter names. But if a java source file exists for a class, we can scan it both for method parameter names and javadoc descriptions during class loading. Some jar files include javadoc also.
Now autocomplete-java implementation includes parameter names if classes have been compiled the -parameters switch of Javac. Still missing parameter names for most libraries though.
Class descriptions are currently read with javap command and unfortunately it doesn't print out parameter names. But if a java source file exists for a class, we can scan it both for method parameter names and javadoc descriptions during class loading. Some jar files include javadoc also.