aboutsummaryrefslogtreecommitdiff
path: root/website/templates
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-12-11 13:07:16 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-12-11 13:07:16 +0100
commit08faffdf836c8b8d0cca9824bfc32dc1d6a7c2e6 (patch)
tree4f4eb7c8d786ba6109e6d9ef8753896754d19db1 /website/templates
parentd126ad64b3232565f1f0367efaa14249d3ed0aec (diff)
downloadlombok-08faffdf836c8b8d0cca9824bfc32dc1d6a7c2e6.tar.gz
lombok-08faffdf836c8b8d0cca9824bfc32dc1d6a7c2e6.tar.bz2
lombok-08faffdf836c8b8d0cca9824bfc32dc1d6a7c2e6.zip
[website] slight update to the tolerate pages
Diffstat (limited to 'website/templates')
-rw-r--r--website/templates/features/experimental/Tolerate.html60
-rw-r--r--website/templates/features/experimental/index.html2
2 files changed, 32 insertions, 30 deletions
diff --git a/website/templates/features/experimental/Tolerate.html b/website/templates/features/experimental/Tolerate.html
index 09610069..fc0eeb35 100644
--- a/website/templates/features/experimental/Tolerate.html
+++ b/website/templates/features/experimental/Tolerate.html
@@ -1,34 +1,36 @@
<#import "../_features.html" as f>
- <@f.scaffold title="@Tolerate" logline="Skip, jump, and forget! Skip a method or constructor.">
- <@f.history>
- <p>
- <code>@Tolerate</code> was introduced as feature in lombok v1.14.2<br />
- </p>
- </@f.history>
+<@f.scaffold title="@Tolerate" logline="Skip, jump, and forget! Make lombok disregard an existing method or constructor.">
+ <@f.history>
+ <p>
+ <code>@Tolerate</code> was introduced as feature in lombok v1.14.2<br />
+ </p>
+ </@f.history>
- <@f.experimental>
- <ul>
- <li>
- Not used that much.
- </li>
- <li>
- Difficult to support for edge cases, such as recursive delegation.
- </li>
- </ul>
- </@f.experimental>
+ <@f.experimental>
+ <ul>
+ <li>
+ Not used that much.
+ </li>
+ <li>
+ Difficult to support for edge cases, such as recursive delegation.
+ </li>
+ </ul>
+ </@f.experimental>
- <@f.overview>
- <p>
- Any method or constructor can be annotated with <code>@Tolerate</code> and lombok will skip it when
- considering whether or not to generate a method or constructor. This is useful if the types of the
- parameters of your method do not clash with what lombok would generate.
- </p>
- <p>
- Put on any method or constructor to make lombok pretend it doesn't exist,i.e., to generate a method
- which would otherwise be skipped due to possible conflicts.
- </p>
- </@f.overview>
+ <@f.overview>
+ <p>
+ Any method or constructor can be annotated with <code>@Tolerate</code> and lombok will act as if it
+ does not exist. For example, normally lombok would not generate a <code>setDate</code> method for field
+ named <code>date</code> if you already have a method named <code>setDate</code> in your code already. By
+ annotating that method with <code>@Tolerate</code>, lombok will generate it anyway. This can be useful if the
+ type of the parameter of your existing method is different and doesn't clash.
+ </p>
+ <p>
+ Put on any method or constructor to make lombok pretend it doesn't exist, i.e., to generate a method
+ which would otherwise be skipped due to possible conflicts.
+ </p>
+ </@f.overview>
- <@f.snippets name="experimental/Tolerate" />
- </@f.scaffold> \ No newline at end of file
+ <@f.snippets name="experimental/Tolerate" />
+</@f.scaffold>
diff --git a/website/templates/features/experimental/index.html b/website/templates/features/experimental/index.html
index 9ed3f546..b158d381 100644
--- a/website/templates/features/experimental/index.html
+++ b/website/templates/features/experimental/index.html
@@ -69,7 +69,7 @@
</@main.feature>
<@main.feature title="@Tolerate" href="Tolerate">
- Skip, jump, and forget! Skip a method or constructor.
+ Skip, jump, and forget! Make lombok disregard an existing method or constructor.
</@main.feature>
</div>