aboutsummaryrefslogtreecommitdiff
path: root/website/features
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-09-03 23:11:04 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-09-03 23:11:04 +0200
commit02f8fbc13b7deff36e041d50d1de365d20bd192b (patch)
tree34307edc1c3c0f305ce1358b8db78b7d3a362cb0 /website/features
parent9f691c56be7dbfb8aab69a6dbe16d81d44f47654 (diff)
downloadlombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.tar.gz
lombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.tar.bz2
lombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.zip
Added a bunch of javadoc. No other changes.
Diffstat (limited to 'website/features')
-rw-r--r--website/features/Data.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/features/Data.html b/website/features/Data.html
index 594e3269..2689a124 100644
--- a/website/features/Data.html
+++ b/website/features/Data.html
@@ -18,7 +18,7 @@
<h3>Overview</h3>
<p>
<code>@Data</code> is a convenient shortcut annotation that bundles the features of <a href="ToString.html"><code>@ToString</code></a>,
- <a href="EqualsAndHashCode.html">@EqualsAndHashCode</code></a> and <a href="GetterSetter.html"><code>@Getter</code> / <code>@Setter</code></a>
+ <a href="EqualsAndHashCode.html"><code>@EqualsAndHashCode</code></a> and <a href="GetterSetter.html"><code>@Getter</code> / <code>@Setter</code></a>
together: In other words, <code>@Data</code> generates <em>all</em> the boilerplate that is normally associated with simple POJOs
(Plain Old Java Objects) and beans: getters for all fields, setters for all non-final fields, and appropriate <code>toString</code>, <code>equals</code>
and <code>hashCode</code> implementations that involve the fields of the class. In addition, <code>@Data</code> generates a constructor that