diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-03 23:11:04 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-03 23:11:04 +0200 |
commit | 02f8fbc13b7deff36e041d50d1de365d20bd192b (patch) | |
tree | 34307edc1c3c0f305ce1358b8db78b7d3a362cb0 /website/features | |
parent | 9f691c56be7dbfb8aab69a6dbe16d81d44f47654 (diff) | |
download | lombok-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.html | 2 |
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 |