I am looking for a way to get all javadoc for all methods with specific annotation at runtime. I am going to use this javadoc to display the details of these methods in the user interface.
These methods are later used for testing, they will be called in an unknown order, defined by the user - I want the user to be able to see javadoc without having to browse the sources.
Yes, I have sources and you can use them to achieve the goal.
The best way I thought about this is to maintain a separate description file that will be read at runtime, but that means I have to support both javadoc and an external file, and I don't like the idea of keeping two copies of pretty similar text .
Cheers for any answers! Thank.
source
share