diff options
author | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-07-10 15:05:06 -0500 |
---|---|---|
committer | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-07-10 15:05:06 -0500 |
commit | 96151ade650c2038ab639a1c0f5a504747c4b1b5 (patch) | |
tree | d826f1c2e189ca49ee1d534ed5012943f79b242c /test/transform/resource/after-delombok | |
parent | 5f198d71c684c6a2f1eec9ae6026cca5f4fd7c30 (diff) | |
download | lombok-96151ade650c2038ab639a1c0f5a504747c4b1b5.tar.gz lombok-96151ade650c2038ab639a1c0f5a504747c4b1b5.tar.bz2 lombok-96151ade650c2038ab639a1c0f5a504747c4b1b5.zip |
Add tests for prefixed builder
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/BuilderWithPrefix.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/BuilderWithPrefix.java b/test/transform/resource/after-delombok/BuilderWithPrefix.java new file mode 100644 index 00000000..c29d2a16 --- /dev/null +++ b/test/transform/resource/after-delombok/BuilderWithPrefix.java @@ -0,0 +1,34 @@ +import java.util.List; +class BuilderWithPrefix<T> { + private int unprefixed; + @java.lang.SuppressWarnings("all") + BuilderWithPrefix(final int unprefixed) { + this.unprefixed = unprefixed; + } + @java.lang.SuppressWarnings("all") + protected static class BuilderWithPrefixBuilder<T> { + @java.lang.SuppressWarnings("all") + private int unprefixed; + @java.lang.SuppressWarnings("all") + BuilderWithPrefixBuilder() { + } + @java.lang.SuppressWarnings("all") + public BuilderWithPrefixBuilder<T> withUnprefixed(final int unprefixed) { + this.unprefixed = unprefixed; + return this; + } + @java.lang.SuppressWarnings("all") + public BuilderWithPrefix<T> build() { + return new BuilderWithPrefix<T>(unprefixed); + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "BuilderWithPrefix.BuilderWithPrefixBuilder(unprefixed=" + this.unprefixed + ")"; + } + } + @java.lang.SuppressWarnings("all") + protected static <T> BuilderWithPrefixBuilder<T> builder() { + return new BuilderWithPrefixBuilder<T>(); + } +} |