diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-17 06:54:33 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-17 06:54:33 +0200 |
commit | 32a23d77866093c5ba97eefdd5482868cf505de5 (patch) | |
tree | f97477bdc0cc3547a90e6d2798a1f34337f30798 /doc/changelog.markdown | |
parent | 99f763a7294065333bee1d269dc28a744e072bcc (diff) | |
download | lombok-32a23d77866093c5ba97eefdd5482868cf505de5.tar.gz lombok-32a23d77866093c5ba97eefdd5482868cf505de5.tar.bz2 lombok-32a23d77866093c5ba97eefdd5482868cf505de5.zip |
Implements issue #129: @Getter and @Setter are now legal on entire types.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 5ed9b014..edac2dda 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -9,6 +9,7 @@ Lombok Changelog * FEATURE: If `tools.jar` isn't found (required when running _delombok_), now a useful error message is generated. The search for `tools.jar` now also looks in `JAVA_HOME`. * FEATURE: FindBugs' `@CheckForNull` is now copied from a field to a setter's parameter and the getter method just like `@Nullable`. [Issue #128](http://code.google.com/p/projectlombok/issues/detail?id=128) * BUILD: dependencies are now fetched automatically via ivy, and most dependencies now include sources by default, which is particularly handy for those working on the lombok sources themselves. +* FEATURE: Adding `@Getter` or `@Setter` to a class is now legal and is like adding those annotations to every non-static field in it. [Issue #129](http://code.google.com/p/projectlombok/issues/detail?id=129) ### v0.9.2 "Hailbunny" (December 15th, 2009) * preliminary support for lombok on NetBeans! - thanks go to Jan Lahoda from NetBeans. [Issue #20](http://code.google.com/p/projectlombok/issues/detail?id=20) |