Is it possible in any way to programmatically get hold of the javadoc of a field?
Hello!Suppose you got a class looking like:
public class MyClass
{
/**
* I WANT THIS DOC
*/
String aMember = "Hola";
}
If you do:
Class c = Class.forName("MyClass");
Field[] fields = c.getDecleradeFields();
With these fields in you hand, is it possible to programmatically get hold of the javadoc with the value "I WANT THIS DOC"?
Or is it completly out of my scope when I use reflect?
Best regards
Fredrik
