// Generated by delombok at Sat Jun 11 11:12:45 CEST 2016 class WitherPlain { int i; final int foo; WitherPlain(int i, int foo) { this.i = i; this.foo = foo; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public WitherPlain withI(final int i) { return this.i == i ? this : new WitherPlain(i, this.foo); } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public WitherPlain withFoo(final int foo) { return this.foo == foo ? this : new WitherPlain(this.i, foo); } }