mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
7 lines
170 B
Java
7 lines
170 B
Java
import java.util.List;
|
|
|
|
@lombok.Builder(access = lombok.AccessLevel.PROTECTED, setterPrefix = "with")
|
|
class BuilderSimpleWithSetterPrefix<T> {
|
|
private int unprefixed;
|
|
}
|