aboutsummaryrefslogtreecommitdiff
path: root/usage_examples
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-20 07:43:02 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-20 07:43:02 +0200
commitaaf8547d91a540334419f2faebb897b327d535d8 (patch)
tree77f31019f0c87e823c5ed6a2569170b8bce7c7f6 /usage_examples
parentf17ba28daa683a4ef9f7743a1ccdde8f8632cb94 (diff)
downloadlombok-aaf8547d91a540334419f2faebb897b327d535d8.tar.gz
lombok-aaf8547d91a540334419f2faebb897b327d535d8.tar.bz2
lombok-aaf8547d91a540334419f2faebb897b327d535d8.zip
Added documentation for @RequiredArgsConstructor, @NoArgsConstructor, @AllArgsConstructor, and also how these generate @ConstructorProperties annotations.
Also updated @Getter and @Setter's documentation to explain their new class-level feature, and updated @Data's description to highlight how @Data is now truly nothing more than the combination of @RequiredArgsConstructor, @EqualsAndHashCode, @ToString, @Getter, and @Setter.
Diffstat (limited to 'usage_examples')
-rw-r--r--usage_examples/ConstructorExample_post.jpage30
-rw-r--r--usage_examples/ConstructorExample_pre.jpage16
2 files changed, 46 insertions, 0 deletions
diff --git a/usage_examples/ConstructorExample_post.jpage b/usage_examples/ConstructorExample_post.jpage
new file mode 100644
index 00000000..5f4aa987
--- /dev/null
+++ b/usage_examples/ConstructorExample_post.jpage
@@ -0,0 +1,30 @@
+@RequiredArgsConstructor(staticName = "of")
+@AllArgsConstructor(access = AccessLevel.PROTECTED)
+public class ConstructorExample<T> {
+ private int x, y;
+ @NonNull private T description;
+
+ private ConstructorExample(T description) {
+ if (description == null) throw new NullPointerException("description");
+ this.description = description;
+ }
+
+ public static <T> ConstructorExample<T> of(T description) {
+ return new ConstructorExample<T>(description);
+ }
+
+ @java.beans.ConstructorProperties({"x", "y", "description"})
+ protected ConstructorExample(int x, int y, T description) {
+ if (description == null) throw new NullPointerException("description");
+ this.x = x;
+ this.y = y;
+ this.description = description;
+ }
+
+ public static class NoArgsExample {
+ @NonNull private String field;
+
+ public NoArgsExample() {
+ }
+ }
+}
diff --git a/usage_examples/ConstructorExample_pre.jpage b/usage_examples/ConstructorExample_pre.jpage
new file mode 100644
index 00000000..ac0d3c28
--- /dev/null
+++ b/usage_examples/ConstructorExample_pre.jpage
@@ -0,0 +1,16 @@
+import lombok.AccessLevel;
+import lombok.RequiredArgsConstructor;
+import lombok.AllArgsConstructor;
+import lombok.NonNull;
+
+@RequiredArgsConstructor(staticName = "of")
+@AllArgsConstructor(access = AccessLevel.PROTECTED)
+public class ConstructorExample<T> {
+ private int x, y;
+ @NonNull private T description;
+
+ @NoArgsConstructor
+ public static class NoArgsExample {
+ @NonNull private String field;
+ }
+}