mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
10 lines
208 B
Java
10 lines
208 B
Java
import java.util.List;
|
|
|
|
@lombok.Builder(access = lombok.AccessLevel.PROTECTED)
|
|
class BuilderSimple<T> {
|
|
private final int noshow = 0;
|
|
private final int yes;
|
|
private List<T> also;
|
|
private int $butNotMe;
|
|
}
|