Files
lombok/test/transform/resource/before/SetterAndWitherJavadoc.java
T

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;
}
}