[Doxygen-develop] Possible bug while producing documentation of java method which uses generics
Brought to you by:
dimitri
From: Moreno <mo...@gm...> - 2014-09-04 15:33:24
|
Hi all, we are trying to produce Doxygen documentation from Javadoc placed in code. We noticed that Doxygen 1.8.8 has fixed a similar bug about Java generics used by a class ( http://github.com/doxygen/doxygen/commit/c3ddf3331239fb3f41e502a8337eee786ceaad06), but we are facing with a method that uses generics: ... */*** * * This is a brief comment.* * * * * * @param handler your handler implementation* * */* * public <E extends BaseEvent, L extends BaseListener<E>> void addHandler(BaseHandler<E, L> handler) {* * // do something* * }* ... Seems that Doxygen completely ignores the code annotations from that method to the end of same class. The log doesn't say anything about that and the method is not reported on the produced html. Has anyone had the same problem? Thank you -- Moreno |