mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-19 04:22:34 +00:00
27 lines
507 B
Java
27 lines
507 B
Java
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;
|
|
}
|
|
}
|