aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java')
-rw-r--r--test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java87
1 files changed, 0 insertions, 87 deletions
diff --git a/test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java b/test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java
deleted file mode 100644
index 83fa2e4e..00000000
--- a/test/transform/resource/after-ecj/BuilderWithDeprecatedWithSetterPrefix.java
+++ /dev/null
@@ -1,87 +0,0 @@
-import com.google.common.collect.ImmutableList;
-import lombok.Builder;
-import lombok.Singular;
-public @Builder(setterPrefix = "with") class BuilderWithDeprecatedWithSetterPrefix {
- public static @java.lang.SuppressWarnings("all") class BuilderWithDeprecatedWithSetterPrefixBuilder {
- private @java.lang.SuppressWarnings("all") String dep1;
- private @java.lang.SuppressWarnings("all") int dep2;
- private @java.lang.SuppressWarnings("all") java.util.ArrayList<String> strings;
- private @java.lang.SuppressWarnings("all") com.google.common.collect.ImmutableList.Builder<Integer> numbers;
- @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder() {
- super();
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withDep1(final String dep1) {
- this.dep1 = dep1;
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withDep2(final int dep2) {
- this.dep2 = dep2;
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withString(final String string) {
- if ((this.strings == null))
- this.strings = new java.util.ArrayList<String>();
- this.strings.add(string);
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withStrings(final java.util.Collection<? extends String> strings) {
- if ((this.strings == null))
- this.strings = new java.util.ArrayList<String>();
- this.strings.addAll(strings);
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder clearStrings() {
- if ((this.strings != null))
- this.strings.clear();
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withNumber(final Integer number) {
- if ((this.numbers == null))
- this.numbers = com.google.common.collect.ImmutableList.builder();
- this.numbers.add(number);
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder withNumbers(final java.lang.Iterable<? extends Integer> numbers) {
- if ((this.numbers == null))
- this.numbers = com.google.common.collect.ImmutableList.builder();
- this.numbers.addAll(numbers);
- return this;
- }
- public @java.lang.Deprecated @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder clearNumbers() {
- this.numbers = null;
- return this;
- }
- public @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefix build() {
- java.util.List<String> strings;
- switch (((this.strings == null) ? 0 : this.strings.size())) {
- case 0 :
- strings = java.util.Collections.emptyList();
- break;
- case 1 :
- strings = java.util.Collections.singletonList(this.strings.get(0));
- break;
- default :
- strings = java.util.Collections.unmodifiableList(new java.util.ArrayList<String>(this.strings));
- }
- com.google.common.collect.ImmutableList<Integer> numbers = ((this.numbers == null) ? com.google.common.collect.ImmutableList.<Integer>of() : this.numbers.build());
- return new BuilderWithDeprecatedWithSetterPrefix(dep1, dep2, strings, numbers);
- }
- public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
- return (((((((("BuilderWithDeprecatedWithSetterPrefix.BuilderWithDeprecatedWithSetterPrefixBuilder(dep1=" + this.dep1) + ", dep2=") + this.dep2) + ", strings=") + this.strings) + ", numbers=") + this.numbers) + ")");
- }
- }
- String dep1;
- @Deprecated int dep2;
- @Singular @Deprecated java.util.List<String> strings;
- @Singular @Deprecated ImmutableList<Integer> numbers;
- @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefix(final String dep1, final int dep2, final java.util.List<String> strings, final ImmutableList<Integer> numbers) {
- super();
- this.dep1 = dep1;
- this.dep2 = dep2;
- this.strings = strings;
- this.numbers = numbers;
- }
- public static @java.lang.SuppressWarnings("all") BuilderWithDeprecatedWithSetterPrefixBuilder builder() {
- return new BuilderWithDeprecatedWithSetterPrefixBuilder();
- }
-}