Annotation Type PluginVisitorStrategy
-
@Documented @Retention(RUNTIME) @Target(ANNOTATION_TYPE) public @interface PluginVisitorStrategy
Meta-annotation to denote the class name to use that implementsPluginVisitor
for the annotated annotation.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends PluginVisitor<? extends Annotation>>
value
The class to use that implementsPluginVisitor
for the given annotation.
-
-
-
Element Detail
-
value
Class<? extends PluginVisitor<? extends Annotation>> value
The class to use that implementsPluginVisitor
for the given annotation. The generic type inPluginVisitor
should match the annotation this annotation is applied to.
-
-