From f36be2eb01bcbff01a513d64bff2d1aba54460b1 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 16 Jun 2009 03:04:46 +0200 Subject: Implemented a lot of stuff for javac, but we ran into 2 major issues still to be implemented: 1. The visit mode of a lombok handler (does not trigger off of annotations, instead sees every field, method, type, and statement), needs to be coded, 2. triggering off of annotations via APT's annotation handling system skips method-local classes. We'll need to recode this via an AST visitor like we need for issue #1 Other than that, triggering off of annotations works swimmingly! --- doc/PlannedExtensions.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc') diff --git a/doc/PlannedExtensions.txt b/doc/PlannedExtensions.txt index ad38855e..27527d9d 100644 --- a/doc/PlannedExtensions.txt +++ b/doc/PlannedExtensions.txt @@ -17,9 +17,12 @@ Optionally you can generate a different access level by specifying the `AccessLe private @Getter(AccessLevel.PROTECTED) AnyType foo; +Don't forget to allow use on static fields! + ## @Setter Like @Getter, but creates setters. +Don't forget to allow use on static fields! ## @Data -- cgit