aboutsummaryrefslogtreecommitdiff
path: root/website2/templates/features/configuration.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2017-01-06 01:21:28 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-05-29 21:01:53 +0200
commita24bf3194477a841c905827ef625e19b0fd53b2a (patch)
treee0cf9ef16bd9f8cac8b7953e193980beff9d733e /website2/templates/features/configuration.html
parentbb85d799b3ba549c8a29afab0b246cb13b10507a (diff)
downloadlombok-a24bf3194477a841c905827ef625e19b0fd53b2a.tar.gz
lombok-a24bf3194477a841c905827ef625e19b0fd53b2a.tar.bz2
lombok-a24bf3194477a841c905827ef625e19b0fd53b2a.zip
feature pages updated and made more consistent.
Diffstat (limited to 'website2/templates/features/configuration.html')
-rw-r--r--website2/templates/features/configuration.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/website2/templates/features/configuration.html b/website2/templates/features/configuration.html
index db3fc736..d33ae1c5 100644
--- a/website2/templates/features/configuration.html
+++ b/website2/templates/features/configuration.html
@@ -90,4 +90,17 @@
</div>
</p>
</@f.featureSection>
+
+ <@f.featureSection>
+ <h3>Config keys that can affect any source file</h3>
+
+ <p>
+ These config keys can make lombok affect source files even if they have 0 lombok annotations in them.<br />
+ <div class="snippet example">
+ <code>lombok.fieldDefaults.defaultPrivate = true</code><br />
+ <code>lombok.fieldDefaults.defaultFinal = true</code>
+ </div>
+ Turning either of these options on means lombok will make <em>every</em> field in <em>every</em> source file final and/or private unless it has an explicit access modifier or annotation to suppress this. <a href="experimental/FieldDefaults">See the <code>@FieldDefaults</code> documentation for more</a>.
+ </p>
+ </@f.featureSection>
</@f.scaffold>