This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com.comsysto.livingdoc.annotation.processors.plantuml.PlantUmlClassDiagramProcessor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SupportedAnnotationTypes("com.comsysto.livingdoc.annotation.plantuml.PlantUmlClass") // <3> | |
@SupportedOptions({KEY_SETTINGS_DIR, KEY_OUT_DIR, KEY_ENABLED}) // <4> | |
@SupportedSourceVersion(SourceVersion.RELEASE_8) // <5> | |
public class PlantUmlClassDiagramProcessor extends AbstractProcessor { // <1> | |
@Override | |
public boolean process(final Set<? extends TypeElement> annotations, final RoundEnvironment roundEnv) { | |
// ... <2> | |
} | |
// ... |