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());
}
}

