blob: 623277a023d36309bc39e1331ee11d4bfa1ef46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import lombok.experimental.Wither;
class SetterAndWitherJavadoc {
@lombok.Setter @lombok.experimental.Wither int i;
@lombok.Setter @lombok.experimental.Wither int j;
SetterAndWitherJavadoc(int i, int j) {
super();
this.i = i;
this.j = j;
}
public @java.lang.SuppressWarnings("all") void setI(final int i) {
this.i = i;
}
public @java.lang.SuppressWarnings("all") SetterAndWitherJavadoc withI(final int i) {
return ((this.i == i) ? this : new SetterAndWitherJavadoc(i, this.j));
}
public @java.lang.SuppressWarnings("all") void setJ(final int j) {
this.j = j;
}
public @java.lang.SuppressWarnings("all") SetterAndWitherJavadoc withJ(final int j) {
return ((this.j == j) ? this : new SetterAndWitherJavadoc(this.i, j));
}
}
|