aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderSingularWithPrefixesWithSetterPrefix.java
blob: 1b95366888b559f7144bc1031ecdd2b82eacad94 (plain)
1
2
3
4
5
6
7
import lombok.Singular;

@lombok.Builder(setterPrefix = "with")
@lombok.experimental.Accessors(prefix = "_")
class BuilderSingularWithPrefixesWithSetterPrefix {
	@Singular private java.util.List<String> _elems;
}