aboutsummaryrefslogtreecommitdiff
path: root/website/templates/features/experimental/SuperBuilder.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-07-09 00:10:36 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-07-09 00:11:00 +0200
commitc1039553b088dc45d272b942d930414d3224b06c (patch)
treeec303678473bd2c56c711f93dbea464affeaaab3 /website/templates/features/experimental/SuperBuilder.html
parentbcf2d55abfb2b9d17de5ec339d16221dca6db6d4 (diff)
downloadlombok-c1039553b088dc45d272b942d930414d3224b06c.tar.gz
lombok-c1039553b088dc45d272b942d930414d3224b06c.tar.bz2
lombok-c1039553b088dc45d272b942d930414d3224b06c.zip
[builder] added a feature: you can now configure builder class name via the config system
Diffstat (limited to 'website/templates/features/experimental/SuperBuilder.html')
-rw-r--r--website/templates/features/experimental/SuperBuilder.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/website/templates/features/experimental/SuperBuilder.html b/website/templates/features/experimental/SuperBuilder.html
index c68e28ca..5676b60c 100644
--- a/website/templates/features/experimental/SuperBuilder.html
+++ b/website/templates/features/experimental/SuperBuilder.html
@@ -52,6 +52,10 @@
<@f.confKeys>
<dt>
+ <code>lombok.builder.className</code> = [a java identifier with an optional star to indicate where the return type name goes] (default: <code>*Builder</code>)
+ </dt><dd>
+ This is the name of the generated builder class; any star in the name is replaced with the relevant return type. Note that the parent class must also have the same setting (the entire type hierarchy annoated with <code>@SuperBuilder</code> needs the same setting).
+ </dd><dt>
<code>lombok.superBuilder.flagUsage</code> = [<code>warning</code> | <code>error</code>] (default: not set)
</dt><dd>
Lombok will flag any usage of <code>@SuperBuilder</code> as a warning or error if configured.