diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 15:32:29 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 15:35:05 +0200 |
commit | 56616f3bec6d8eda8c2bcf0550490f0098fb7fed (patch) | |
tree | 224718bcdf3855508843ceca56fd60deb95b52f2 /website/features/Data.html | |
parent | 4bf8ee3f67f7c076421b6c6a396c85e7bd794749 (diff) | |
download | lombok-56616f3bec6d8eda8c2bcf0550490f0098fb7fed.tar.gz lombok-56616f3bec6d8eda8c2bcf0550490f0098fb7fed.tar.bz2 lombok-56616f3bec6d8eda8c2bcf0550490f0098fb7fed.zip |
Fix: getters and setters for $foo fields (including our own $lock!) are now no longer generated.
Diffstat (limited to 'website/features/Data.html')
-rw-r--r-- | website/features/Data.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/website/features/Data.html b/website/features/Data.html index 2689a124..8e33be8f 100644 --- a/website/features/Data.html +++ b/website/features/Data.html @@ -69,6 +69,9 @@ <em>null</em>. Therefore, these annotations result in an explicit null check in the generated constructor for the provided field. Also, these annotations (as well as any annotation named <code>@Nullable</code>) are copied to the constructor parameter, in both the true constructor and any static constructor. The same principle applies to generated getters and setters (see the documentation for <a href="GetterSetter.html">@Getter / @Setter</a>) + </p><p> + By default, any variables that start with a $ symbol are excluded automatically. + You can include them by specifying an explicit annotation (<code>@Getter</code> or <code>@ToString</code>, for example) and using the 'of' parameter. </p> </div> </div> |