IAnnotationProcessor
Implement this to create your own processor.
Need to be used with @AnnotationProcessor
Example(s):
@AnnotationProcessor(IAnnotatedRegistryEntry.class)
public class RegistrationManager implements IAnnotationProcessor {
@Override
public void process(Class<?> clazz) {
// Your process logic here.
}
}