From 02f8fbc13b7deff36e041d50d1de365d20bd192b Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 3 Sep 2009 23:11:04 +0200 Subject: Added a bunch of javadoc. No other changes. --- website/features/Data.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') 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 @@

Overview

@Data is a convenient shortcut annotation that bundles the features of @ToString, - @EqualsAndHashCode and @Getter / @Setter + @EqualsAndHashCode and @Getter / @Setter together: In other words, @Data generates all 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 toString, equals and hashCode implementations that involve the fields of the class. In addition, @Data generates a constructor that -- cgit