I want to create an annotation processor that will generate configuration reference from javadoc in source code. I would like to be able to annotate configuration properties in the source and extract the javadoc so that it can be published as configuration reference material.
For eg. if i have an annotation like..
/**
* This is to test annotation processor to extract javadoc.
* <p>
* I am trying to extract the javadoc whenever there is an annotation @ConfigProperty.
* <p>
* This is to test annotation processor to extract javadoc.
*/
@ConfigProperty(component="XYZ", section="some section")
public static final String TEST = "my test annotation";
Sample Output