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