diff options
Diffstat (limited to 'website/features/index.html')
-rw-r--r-- | website/features/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/website/features/index.html b/website/features/index.html index d216ddb4..edc173fb 100644 --- a/website/features/index.html +++ b/website/features/index.html @@ -15,6 +15,8 @@ <dl> <dt><a href="GetterSetter.html"><code>@Getter</code> / <code>@Setter</code></a></dt> <dd>Never write <code>public int getFoo() {return foo;}</code> again.</dd> + <dt><a href="GetterLazy.html"><code>@Getter(lazy=true)</code></a></dt> + <dd>Laziness is a virtue!</dd> <dt><a href="ToString.html"><code>@ToString</code></a></dt> <dd>No need to start a debugger to see your fields: Just let lombok generate a <code>toString</code> for you!</dd> <dt><a href="EqualsAndHashCode.html"><code>@EqualsAndHashCode</code></a></dt> @@ -32,6 +34,8 @@ <dd>To boldly throw checked exceptions where no one has thrown them before!</dd> <dt><a href="Log.html"><code>@Log</code></a></dt> <dd>Captain's Log, stardate 24435.7: "What was that line again?"</dd> + <dt><a href="val.html"><code>val</code></a></dt> + <dd>Finally! hassle-free final local variables.</dd> </dl> </div> <div class="pointer"> |