blob: 0df833464718d137020b1086a5cc182456e6e114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package lombok.javac;
import java.lang.annotation.Annotation;
import lombok.core.AnnotationValues;
import com.sun.tools.javac.tree.JCTree.JCAnnotation;
public interface JavacAnnotationHandler<T extends Annotation> {
void handle(AnnotationValues<T> annotation, JCAnnotation ast, JavacAST.Node annotationNode);
}
|