aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderSingularListsWithSetterPrefix.java
blob: fd53d97fa88e9267bbd225d5c7a01fd116a8232d (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.List;
import java.util.Collection;

import lombok.Singular;

@lombok.Builder(setterPrefix = "with")
class BuilderSingularListsWithSetterPrefix<T> {
	@Singular private List<T> children;
	@Singular private Collection<? extends Number> scarves;
	@SuppressWarnings("all") @Singular("rawList") private List rawList;
}