diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-03-27 00:21:06 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-03-27 00:22:13 +0200 |
commit | 10b6166ff33ee633fca93d74d87965ada5df4269 (patch) | |
tree | b0fe3d7d44c88c9aefd75f30f2fb5698d3cb4a46 /doc | |
parent | 19466a5413d0c451b89d0d70a8ba8f5fe0fc98aa (diff) | |
download | lombok-10b6166ff33ee633fca93d74d87965ada5df4269.tar.gz lombok-10b6166ff33ee633fca93d74d87965ada5df4269.tar.bz2 lombok-10b6166ff33ee633fca93d74d87965ada5df4269.zip |
Finished up documentation for Accessors.
Diffstat (limited to 'doc')
-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 f06cd563..f4923b5d 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,7 @@ Lombok Changelog ---------------- ### v0.10.9 (edge) +* FEATURE: [Experimental] 'fluent' getters and setters (using just `fieldName` as methodname instead of `getFieldName`), setters that return `this` instead of `void`, and support for fields with prefixes is introduced with this lombok version. Also, the number of parameters of any existing methods with the same name that lombok would generate are now taken into account; previously if you had any method named `setX` regardless of how many parameters it has, lombok would avoid generating a `setX` method. Now lombok generates the method if all present `setX` methods have a number of parameters other than 1. [documentation](http://projectlombok.org/features/experimental/Accessors.html). * FEATURE: The combination of `@Delegate` and `@Getter` or `@Data` will now delegate to the result of a generated getter. [Issue #328](http://code.google.com/p/projectlombok/issues/detail?id=328) * BUGFIX: In NetBeans the generated default constructor would still be generated even if Lombok also generated constructors. [Issue #326](http://code.google.com/p/projectlombok/issues/detail?id=326) * BUGFIX: Some classes that contain @SneakyThrows would not compile (throw ClassFormatError). [Issue 339](http://code.google.com/p/projectlombok/issues/detail?id=339) |