aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/javac/handlers/HandleData.java
AgeCommit message (Expand)Author
2009-11-02the static constructor generated by @Data wasn't public when compiling with j...Reinier Zwitserloot
2009-10-31Made the utility methods previously located in package private 'PKG.java' in ...Reinier Zwitserloot
2009-10-17Fix: getters and setters for $foo fields (including our own $lock!) are now n...Reinier Zwitserloot
2009-10-16Switched all use of <code></code> in javadoc to {@code}.Reinier Zwitserloot
2009-10-16Fixed issue #24 by refactoring the AST.Node class - taken it out, and in the ...Reinier Zwitserloot
2009-08-28null checks are no longer generated if you put @NonNull on primitives.Reinier Zwitserloot
2009-08-27Merge branch 'nonnull'Reinier Zwitserloot
2009-08-27Now @Nullable is also copied over.Reinier Zwitserloot
2009-08-27Made all parameters of all generated methods 'final'.Reinier Zwitserloot
2009-08-01The constructors will now also add non-final fields if they have a NonNull an...Roel Spilker
2009-07-27Split off generation of equals() and hashCode() methods form @Data into a new...Reinier Zwitserloot
2009-07-27[TRIVIAL]Reinier Zwitserloot
2009-07-27Added support for @ToString annotation. The code for generating toStrings has...Reinier Zwitserloot
2009-07-26Addresses issue #5:Reinier Zwitserloot
2009-07-18No constructor entry should be made for assigned final fieldsRoel Spilker
2009-07-11'fixed' data up a bit by including only the final fields for the constructor.Reinier Zwitserloot
2009-07-06Last massive documentation dump. All basic javadoc is now done, though especi...Reinier Zwitserloot
2009-07-03Fine-tuning eclipse's error reporting found some minor issues and even 1 bug ...Reinier Zwitserloot
2009-07-01Added @Synchronized support to javac. Seems to work well.Reinier Zwitserloot
2009-06-25Added support for generating toString to javac's HandleData. Now javac's Hand...Reinier Zwitserloot
2009-06-25Added generating hashCode() to javac's HandleData.Reinier Zwitserloot
2009-06-25javac's HandleData now makes equals methods.Reinier Zwitserloot
2009-06-24javac's HandleData now generates the constructor only if it doesn't already e...Reinier Zwitserloot
2009-06-24Work on HandleData, as well as generalizing features in the the PKG class and...Reinier Zwitserloot
2009-06-19Added initial support for the @Data annotation. Currently produces getters an...Reinier Zwitserloot