From 642dad3f0c13a8a900aac21fe26e1eb672fbb5a6 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 17 Jul 2009 21:25:36 +0200 Subject: Very minor typos in Data/GetterSetter, added an index page for the features overview, and increased transparancy on the pepper background. --- website/features/index.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 website/features/index.html (limited to 'website/features/index.html') diff --git a/website/features/index.html b/website/features/index.html new file mode 100644 index 00000000..c270f4e3 --- /dev/null +++ b/website/features/index.html @@ -0,0 +1,35 @@ + + + + + + + + Lombok feature overview + +
+
+
+ +

Lombok features

+
+
+
@Getter / @Setter
+
Never write public int getFoo() {return foo;} again.
+
@Data
+
'struct' for java: Automatically generate toString, hashCode, equals, a constructor, and getters and setters + from just the fields in your class.
+
@Cleanup
+
Automatic resource management: Call your close() methods safely with no hassle.
+
@Synchronized
+
synchronized done right: Don't expose your locks.
+
@SneakyThrows
+
To boldly throw checked exceptions where no one has thrown them before!
+
+
+
+ Copyright © 2009 Reinier Zwitserloot and Roel Spilker, licensed under the MIT licence. +
+
+
+
-- cgit