Even sooner than expected, but here's my patch.
In a view words:
The parser (pojo)-classes
TypeDef has a new attribute:
public List actualArgumentTypes; // List<TypeDef>
MethodDef has changed:
String returns has been removed
TypeDef returnType has been added
FieldDef:
String type is now TypeDef type;
and a WildCardTypeDef-class has been added to support these Types
The qdox.model:
Of course Type has been modified. It has now actualArgumentType and most important
String getGenericValue()
Both ModelBuilder and JavadocBuilder has been changed to process these change properly. Important to know: the JavaDocBuilder itself still doesn't create generics (requires java5 compilation).
Tests have been modified. Every type which was representated as a String is now a (Wildcard)Type or a(Wildcard)TypeDef.
And of course modifications to parser.y for generating a new Parser together with a small adjustment in lexer.flex to get a fully clean build.
gotta get the parser up to snuff first