Files
lombok/test/transform/resource/after-ecj/WithPlain.java
T
Reinier Zwitserloot 3f0fec1872 [issue #788] Add more nullity annotations where relevant
(chainable setters, static constructors, builder stuff)
2020-01-31 15:58:19 +01:00

17 lines
530 B
Java

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 @org.springframework.lang.NonNull @java.lang.SuppressWarnings("all") WithPlain withI(final int i) {
return ((this.i == i) ? this : new WithPlain(i, this.foo));
}
public @org.springframework.lang.NonNull @java.lang.SuppressWarnings("all") WithPlain withFoo(final int foo) {
return ((this.foo == foo) ? this : new WithPlain(this.i, foo));
}
}