mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
15df143df6
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.
20 lines
404 B
Java
20 lines
404 B
Java
//CONF: checkerframework = true
|
|
import java.util.List;
|
|
import lombok.Singular;
|
|
|
|
class CheckerFrameworkSuperBuilder {
|
|
@lombok.experimental.SuperBuilder
|
|
public static class Parent {
|
|
@lombok.Builder.Default int x = 5;
|
|
int y;
|
|
int z;
|
|
@Singular List<String> names;
|
|
}
|
|
|
|
@lombok.experimental.SuperBuilder
|
|
public static class Child extends Parent {
|
|
@lombok.Builder.Default int a = 1;
|
|
int b;
|
|
}
|
|
}
|