blob: 6953eb39e149142cf6a9aec8879908937d851f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import lombok.experimental.Wither;
class SetterAndWitherJavadoc {
/**
* Some value.
* @param the new value
*/
@lombok.Setter @lombok.experimental.Wither int i;
/**
* Some other value.
*
* --- SETTER ---
* Set some other value.
* @param the new other value
*
* --- WITHER ---
* Reinstantiate with some other value.
* @param the other new other value
*/
@lombok.Setter @lombok.experimental.Wither int j;
SetterAndWitherJavadoc(int i, int j) {
this.i = i;
this.j = j;
}
}
|