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