From bc44e76b7d45da2301a1bb7d28d4e7e8fec4b94b Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sat, 11 Jul 2009 11:11:32 +0200 Subject: Made 'printContent=true' work for types as well as method bodies/initializers. --- src/lombok/core/PrintAST.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/lombok/core/PrintAST.java') diff --git a/src/lombok/core/PrintAST.java b/src/lombok/core/PrintAST.java index 943bf298..df1b652c 100644 --- a/src/lombok/core/PrintAST.java +++ b/src/lombok/core/PrintAST.java @@ -42,9 +42,10 @@ public @interface PrintAST { String outfile() default ""; /** - * Normally, the printer will print each node focusing on the node (E.g. classname, and such). - * By setting printContent to true, methods, initializers, and other statement-containing elements - * actually print their java code instead of a tree view of internal AST nodes. + * Sets whether to print node structure (false) or generated java code (true). + * + * By setting printContent to true, the annotated element's java code representation is printed. If false, + * its node structure (e.g. node classname) is printed, and this process is repeated for all children. */ boolean printContent() default false; } -- cgit