mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 10:19:12 +00:00
17 lines
530 B
Java
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));
|
|
}
|
|
}
|