diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-17 20:54:54 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-17 20:54:54 +0200 |
commit | 8aae52a9923c041486484d30b9b35ee9b6f2a8ea (patch) | |
tree | de2bec8feaa5e851acccb4276b9d433afc2fdbbc /src/lombok/eclipse/handlers | |
parent | 5bdfa539f2f4277eda9ab414dab167a4d6d883e9 (diff) | |
download | lombok-8aae52a9923c041486484d30b9b35ee9b6f2a8ea.tar.gz lombok-8aae52a9923c041486484d30b9b35ee9b6f2a8ea.tar.bz2 lombok-8aae52a9923c041486484d30b9b35ee9b6f2a8ea.zip |
A useful annotation that prints the AST of any annotated element via the XASTPrinters in each ASTVisitor interface.
Diffstat (limited to 'src/lombok/eclipse/handlers')
-rw-r--r-- | src/lombok/eclipse/handlers/HandlePrintAST.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lombok/eclipse/handlers/HandlePrintAST.java b/src/lombok/eclipse/handlers/HandlePrintAST.java new file mode 100644 index 00000000..2e379ce3 --- /dev/null +++ b/src/lombok/eclipse/handlers/HandlePrintAST.java @@ -0,0 +1,17 @@ +package lombok.eclipse.handlers; + +import org.eclipse.jdt.internal.compiler.ast.Annotation; +import org.mangosdk.spi.ProviderFor; + +import lombok.core.AnnotationValues; +import lombok.core.PrintAST; +import lombok.eclipse.EclipseASTVisitor; +import lombok.eclipse.EclipseAnnotationHandler; +import lombok.eclipse.EclipseAST.Node; + +@ProviderFor(EclipseAnnotationHandler.class) +public class HandlePrintAST implements EclipseAnnotationHandler<PrintAST> { + @Override public void handle(AnnotationValues<PrintAST> annotation, Annotation ast, Node annotationNode) { + annotationNode.up().traverse(new EclipseASTVisitor.EclipseASTPrinter()); + } +} |