blob: 52177ef1122da5ace035a0e94c5d71cb900d28f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import lombok.experimental.Wither;
class WitherPlain {
@lombok.experimental.Wither int i;
final @Wither int foo;
WitherPlain(int i, int foo) {
super();
this.i = i;
this.foo = foo;
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherPlain withI(final int i) {
return ((this.i == i) ? this : new WitherPlain(i, this.foo));
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherPlain withFoo(final int foo) {
return ((this.foo == foo) ? this : new WitherPlain(this.i, foo));
}
}
|