generics not included in javadocs

I am using jdk1.5.0_06's version of tools.jar. I have attached the code that I am using in a custom doclet but still I am not able to view generics.

The output is java.util.List instead of the complete type. Am I missing something?

publicstaticboolean start(RootDoc root)throws IOException

{

ClassDoc[] classes = root.classes();

for (int i = 0; i < classes.length; ++i){

ClassDoc cd = classes[i];

printMembers(cd.methods());

}

returntrue;

}

staticvoid printMembers(ExecutableMemberDoc[] mems){

for (int i = 0; i < mems.length; ++i){

ParamTag[] params = mems[i].paramTags();

System.out.println(mems[i].qualifiedName() +" || "+ mems[i].signature());

}

}

[1401 byte] By [Chadhaa] at [2007-11-27 7:44:50]
# 1
Well I got an answer from http://java.sun.com/javase/6/docs/technotes/guides/javadoc/doclet/transition-1.5docletapi.htmlI forgot to override a function languageVersion()
Chadhaa at 2007-7-12 19:25:27 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...