aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SuperBuilderWithDefaults.java
blob: b4edad5b84baa5a9941264a822c2377d81770795 (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
113
114
115
116
117
118
119
120
121
import java.util.List;
public class SuperBuilderWithDefaults {
  public static @lombok.experimental.SuperBuilder class Parent<N extends Number> {
    public static abstract @java.lang.SuppressWarnings("all") class ParentBuilder<N extends Number, C extends SuperBuilderWithDefaults.Parent<N>, B extends SuperBuilderWithDefaults.Parent.ParentBuilder<N, C, B>> {
      private @java.lang.SuppressWarnings("all") long millis$value;
      private @java.lang.SuppressWarnings("all") boolean millis$set;
      private @java.lang.SuppressWarnings("all") N numberField$value;
      private @java.lang.SuppressWarnings("all") boolean numberField$set;
      public ParentBuilder() {
        super();
      }
      /**
       * @return {@code this}.
       */
      public @java.lang.SuppressWarnings("all") B millis(final long millis) {
        this.millis$value = millis;
        millis$set = true;
        return self();
      }
      /**
       * @return {@code this}.
       */
      public @java.lang.SuppressWarnings("all") B numberField(final N numberField) {
        this.numberField$value = numberField;
        numberField$set = true;
        return self();
      }
      protected abstract @java.lang.SuppressWarnings("all") B self();
      public abstract @java.lang.SuppressWarnings("all") C build();
      public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
        return (((("SuperBuilderWithDefaults.Parent.ParentBuilder(millis$value=" + this.millis$value) + ", numberField$value=") + this.numberField$value) + ")");
      }
    }
    private static final @java.lang.SuppressWarnings("all") class ParentBuilderImpl<N extends Number> extends SuperBuilderWithDefaults.Parent.ParentBuilder<N, SuperBuilderWithDefaults.Parent<N>, SuperBuilderWithDefaults.Parent.ParentBuilderImpl<N>> {
      private ParentBuilderImpl() {
        super();
      }
      protected @java.lang.Override @java.lang.SuppressWarnings("all") SuperBuilderWithDefaults.Parent.ParentBuilderImpl<N> self() {
        return this;
      }
      public @java.lang.Override @java.lang.SuppressWarnings("all") SuperBuilderWithDefaults.Parent<N> build() {
        return new SuperBuilderWithDefaults.Parent<N>(this);
      }
    }
    private @lombok.Builder.Default long millis;
    private @lombok.Builder.Default N numberField;
    private static @java.lang.SuppressWarnings("all") <N extends Number>long $default$millis() {
      return System.currentTimeMillis();
    }
    private static @java.lang.SuppressWarnings("all") <N extends Number>N $default$numberField() {
      return null;
    }
    protected @java.lang.SuppressWarnings("all") Parent(final SuperBuilderWithDefaults.Parent.ParentBuilder<N, ?, ?> b) {
      super();
      if (b.millis$set)
          this.millis = b.millis$value;
      else
          this.millis = SuperBuilderWithDefaults.Parent.<N>$default$millis();
      if (b.numberField$set)
          this.numberField = b.numberField$value;
      else
          this.numberField = SuperBuilderWithDefaults.Parent.<N>$default$numberField();
    }
    public static @java.lang.SuppressWarnings("all") <N extends Number>SuperBuilderWithDefaults.Parent.ParentBuilder<N, ?, ?> builder() {
      return new SuperBuilderWithDefaults.Parent.ParentBuilderImpl<N>();
    }
  }
  public static @lombok.experimental.SuperBuilder class Child extends Parent<Integer> {
    public static abstract @java.lang.SuppressWarnings("all") class ChildBuilder<C extends SuperBuilderWithDefaults.Child, B extends SuperBuilderWithDefaults.Child.ChildBuilder<C, B>> extends Parent.ParentBuilder<Integer, C, B> {
      private @java.lang.SuppressWarnings("all") double doubleField$value;
      private @java.lang.SuppressWarnings("all") boolean doubleField$set;
      public ChildBuilder() {
        super();
      }
      /**
       * @return {@code this}.
       */
      public @java.lang.SuppressWarnings("all") B doubleField(final double doubleField) {
        this.doubleField$value = doubleField;
        doubleField$set = true;
        return self();
      }
      protected abstract @java.lang.Override @java.lang.SuppressWarnings("all") B self();
      public abstract @java.lang.Override @java.lang.SuppressWarnings("all") C build();
      public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
        return (((("SuperBuilderWithDefaults.Child.ChildBuilder(super=" + super.toString()) + ", doubleField$value=") + this.doubleField$value) + ")");
      }
    }
    private static final @java.lang.SuppressWarnings("all") class ChildBuilderImpl extends SuperBuilderWithDefaults.Child.ChildBuilder<SuperBuilderWithDefaults.Child, SuperBuilderWithDefaults.Child.ChildBuilderImpl> {
      private ChildBuilderImpl() {
        super();
      }
      protected @java.lang.Override @java.lang.SuppressWarnings("all") SuperBuilderWithDefaults.Child.ChildBuilderImpl self() {
        return this;
      }
      public @java.lang.Override @java.lang.SuppressWarnings("all") SuperBuilderWithDefaults.Child build() {
        return new SuperBuilderWithDefaults.Child(this);
      }
    }
    private @lombok.Builder.Default double doubleField;
    private static @java.lang.SuppressWarnings("all") double $default$doubleField() {
      return Math.PI;
    }
    protected @java.lang.SuppressWarnings("all") Child(final SuperBuilderWithDefaults.Child.ChildBuilder<?, ?> b) {
      super(b);
      if (b.doubleField$set) 
          this.doubleField = b.doubleField$value;
      else
          this.doubleField = SuperBuilderWithDefaults.Child.$default$doubleField();
    }
    public static @java.lang.SuppressWarnings("all") SuperBuilderWithDefaults.Child.ChildBuilder<?, ?> builder() {
      return new SuperBuilderWithDefaults.Child.ChildBuilderImpl();
    }
  }
  public SuperBuilderWithDefaults() {
    super();
  }
  public static void test() {
    Child x = Child.builder().doubleField(0.1).numberField(5).millis(1234567890L).build();
  }
}