blob: ffb56e0e651ac193be061a653a5b4d9e2b795f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
import java.util.List;
public class SuperBuilderBasic {
public static class Parent {
int field1;
List<String> items;
protected Parent(final ParentBuilder<?, ?> b) {
this.field1 = b.field1;
java.util.List<String> items;
switch (b.items == null ? 0 : b.items.size()) {
case 0:
items = java.util.Collections.emptyList();
break;
case 1:
items = java.util.Collections.singletonList(b.items.get(0));
break;
default:
items = java.util.Collections.unmodifiableList(new java.util.ArrayList<String>(b.items));
}
this.items = items;
}
private static class ParentBuilderImpl extends ParentBuilder<Parent, ParentBuilderImpl> {
@Override
public Parent build() {
return new Parent(this);
}
@Override
public ParentBuilderImpl self() {
return this;
}
}
public abstract static class ParentBuilder<C extends Parent, B extends ParentBuilder<C, B>> {
@java.lang.SuppressWarnings("all")
private int field1;
@java.lang.SuppressWarnings("all")
private java.util.ArrayList<String> items;
@java.lang.SuppressWarnings("all")
ParentBuilder() {
}
@java.lang.SuppressWarnings("all")
public B field1(final int field1) {
this.field1 = field1;
return self();
}
@java.lang.SuppressWarnings("all")
public B item(final String item) {
if (this.items == null) this.items = new java.util.ArrayList<String>();
this.items.add(item);
return self();
}
@java.lang.SuppressWarnings("all")
public B items(final java.util.Collection<? extends String> items) {
if (this.items == null) this.items = new java.util.ArrayList<String>();
this.items.addAll(items);
return self();
}
@java.lang.SuppressWarnings("all")
public B clearItems() {
if (this.items != null) this.items.clear();
return self();
}
@java.lang.SuppressWarnings("all")
protected abstract B self();
@java.lang.SuppressWarnings("all")
public abstract C build();
}
public static ParentBuilder<?, ?> builder() {
return new ParentBuilderImpl();
}
}
public static class Child extends Parent {
double field3;
protected Child(ChildBuilder<?, ?> b) {
super(b);
this.field3 = b.field3;
}
private static class ChildBuilderImpl extends ChildBuilder<Child, ChildBuilderImpl> {
@Override
public Child build() {
return new Child(this);
}
@Override
public ChildBuilderImpl self() {
return this;
}
}
public abstract static class ChildBuilder<C extends Child, B extends ChildBuilder<C, B>> extends Parent.ParentBuilder<Child, B> {
@java.lang.SuppressWarnings("all")
private double field3;
@java.lang.SuppressWarnings("all")
ChildBuilder() {
}
@java.lang.SuppressWarnings("all")
public B field3(final double field3) {
this.field3 = field3;
return self();
}
@java.lang.SuppressWarnings("all")
protected abstract B self();
@java.lang.SuppressWarnings("all")
public abstract C build();
}
public static ChildBuilder<?, ?> builder() {
return new ChildBuilderImpl();
}
}
public static void test() {
Child x = Child.builder().field3(0.0).field1(5).item("").build();
}
}
|