Its easy to get a method Name
of a Class
at run time
BUT
How i can get a JavaDoc
of a method at run time ?
As the f
You can't : the class
file doesn't contain the comments.
A "solution" would be to generate the javadoc as HTML when you build your program and to build an URL from the name of the class and the name of the method. You could also generate the javadoc in a more suitable format than HTML using the doclet API.