Files
lombok/test/transform/resource/before/CheckerFrameworkBasic.java
T
Reinier Zwitserloot 15df143df6 [checkerframework]
A bit of a shadow feature because the checker framework folks need to do some work on their side.
this update makes lombok generate a few checker framework annotations (if configured to do so)
which let the checker framework add warnings and errors for example if you misuse builders, or ignore
the return values of withers, etc.
2019-08-22 22:42:48 +02:00

12 lines
256 B
Java

//CONF: checkerframework = 3.0
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.experimental.Wither;
@Data @Accessors(chain = true)
class CheckerFrameworkBasic {
@Wither private final int x;
private final int y;
private int z;
}