diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 21:25:36 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 21:25:36 +0200 |
commit | 642dad3f0c13a8a900aac21fe26e1eb672fbb5a6 (patch) | |
tree | 8b7c7577ad569d430ffc0ce278abd19248e6c774 /website/features/index.html | |
parent | 3bfe8d21610b7d92aa932685bc40abf011295328 (diff) | |
download | lombok-642dad3f0c13a8a900aac21fe26e1eb672fbb5a6.tar.gz lombok-642dad3f0c13a8a900aac21fe26e1eb672fbb5a6.tar.bz2 lombok-642dad3f0c13a8a900aac21fe26e1eb672fbb5a6.zip |
Very minor typos in Data/GetterSetter, added an index page for the features overview, and increased transparancy on the pepper background.
Diffstat (limited to 'website/features/index.html')
-rw-r--r-- | website/features/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
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 @@ +<!DOCTYPE html> +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="stylesheet" type="text/css" href="../logi/reset.css" /> + <link rel="stylesheet" type="text/css" href="features.css" /> + <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" /> + <meta name="description" content="Spice up your java" /> + <title>Lombok feature overview</title> + <!--[if lt IE 7]><script type="text/javascript" src="logi/iepngfix_tilebg.js"></script><![endif]--> +</head><body><div id="pepper"> + <div class="meat"> + <div class="minimumHeight"></div> + <div class="header"><a href="../index.html">Project Lombok</a></div> + <h1>Lombok features</h1> + <div class="index overview"> + <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="Data.html"><code>@Data</code></a></dt> + <dd>'struct' for java: Automatically generate <code>toString</code>, <code>hashCode</code>, <code>equals</code>, a constructor, and getters and setters + from just the fields in your class.</dd> + <dt><a href="Cleanup.html"><code>@Cleanup</code></a></dt> + <dd>Automatic resource management: Call your <code>close()</code> methods safely with no hassle.</dd> + <dt><a href="Synchronized.html"><code>@Synchronized</code></a></dt> + <dd><code>synchronized</code> done right: Don't expose your locks.</dd> + <dt><a href="SneakyThrows.html"><code>@SneakyThrows</code></a></dt> + <dd>To boldly throw checked exceptions where no one has thrown them before!</dd> + </dl> + </div> + <footer> + <span class="copyright">Copyright © 2009 Reinier Zwitserloot and Roel Spilker, licensed under the <a href="http://www.opensource.org/licenses/mit-license.php">MIT licence</a>.</span> + </footer> + <div style="clear: both;"></div> + </div> +</div></body></html> |