blob: c6cc23beec47b1887e1e40c0bf7e91848b08652d (
plain)
1
2
3
4
5
|
package lombok.eclipse;
public interface EclipseAnnotationHandler<T extends java.lang.annotation.Annotation> {
void handle(T annotation, org.eclipse.jdt.internal.compiler.ast.Annotation ast, EclipseAST.Node annotationNode);
}
|