mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-01 12:12:50 +00:00
3f0fec1872
(chainable setters, static constructors, builder stuff)
12 lines
192 B
Java
12 lines
192 B
Java
//CONF: lombok.addNullAnnotations = spring
|
|
import lombok.With;
|
|
class WithPlain {
|
|
@lombok.With int i;
|
|
@With final int foo;
|
|
|
|
WithPlain(int i, int foo) {
|
|
this.i = i;
|
|
this.foo = foo;
|
|
}
|
|
}
|