class WitherWithGenerics { J test; java.util.List test2; int $i; public WitherWithGenerics(J test, java.util.List test2) { } @java.lang.SuppressWarnings("all") public WitherWithGenerics withTest(final J test) { return this.test == test ? this : new WitherWithGenerics(test, this.test2); } @java.lang.SuppressWarnings("all") public WitherWithGenerics withTest2(final java.util.List test2) { return this.test2 == test2 ? this : new WitherWithGenerics(this.test, test2); } }