I have read here that xdoclet 2 should work with java 5 code. I think I
am finding some cases where it doesn't. What procedure I should follow
to reporting the potential bug and to make sure I am not just missing
something... Should I report it here? or to the qdox team? I can
supply several source code examples if needed.
Specifically I get errors with the following coding conventions
---- enum constructs where the enum uses a non-default constructor as in
public enum Device {
LIGHTS( 132 ),
CAMERA( 121 );
private int port;
private Device( int port ) {
this.port = port;
}
}
--- more complex generic expressions like
static Map<Class, BufferedImage> upImageMap_ = new HashMap<Class,
BufferedImage>();
--- any nested generic expressions like
static Set<Class<T extends Icon>> set_ = new HashSet<Class<T extends
Icon>>();
these all produce a parse expression...
thanks,
Glen