How to generate Javdoc for typed collections?
843810Mar 23 2010 — edited Mar 24 2010I have classes that return List<String> or Map<String, String>. However when I run the Javadoc tool the output only lists List or Map as return parameter.
Why? And hwo can I change this to List<String>, etc.?
K<o>