blob: 1b41444cde9f6250c384aea8143379556bbfb9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//platform !ecj: Javadoc copying not supported on ecj
import com.google.common.collect.ImmutableList;
import lombok.Builder;
import lombok.Singular;
@Builder
public class BuilderWithDeprecated {
/** @deprecated since always */ String dep1;
@Deprecated int dep2;
@Singular @Deprecated java.util.List<String> strings;
@Singular @Deprecated ImmutableList<Integer> numbers;
}
|