com.g2forge.alexandria.annotations.IAnnotationHandler Maven / Gradle / Ivy
package com.g2forge.alexandria.annotations;
import java.lang.annotation.Annotation;
import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.Element;
public interface IAnnotationHandler {
public void handle(ProcessingEnvironment processingEnvironment, Element element, String path, Class extends T> annotationType, T annotation);
}