AnnotationProcessor
Indicate this is a processor and provide filter.
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface AnnotationProcessor {
/**
* The class filter. Recommended to be an interface.
* @return {@link Class }<? extends {@link IAnnotationLibEntryPoint }>
*/
Class<? extends IAnnotationLibEntryPoint> value();
}