aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java
blob: 77baccd390f8f30b92a9cc4b17a19e8af62d17aa (plain)
1
2
3
4
5
6
7
8
9
10
11
import com.google.common.collect.ImmutableList;
import lombok.Builder;
import lombok.Singular;

@Builder(setterPrefix = "with")
public class BuilderWithDeprecatedWithSetterPrefix {
	/** @deprecated since always */ String dep1;
	@Deprecated int dep2;
	@Singular @Deprecated java.util.List<String> strings;
	@Singular @Deprecated ImmutableList<Integer> numbers;
}