diff options
author | Emil Lundberg <emil@yubico.com> | 2019-01-08 12:37:14 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2019-01-15 00:00:19 +0100 |
commit | 1ad1a941430af5b6662946d6591c9756d0178cb2 (patch) | |
tree | c97acc5ae5aa63fbd7b9cc687a4591e1de41dc0b /test/transform/resource/before/BuilderJavadoc.java | |
parent | 81c477c43dc8e52d6a40d6533b3d716f0b617e6e (diff) | |
download | lombok-1ad1a941430af5b6662946d6591c9756d0178cb2.tar.gz lombok-1ad1a941430af5b6662946d6591c9756d0178cb2.tar.bz2 lombok-1ad1a941430af5b6662946d6591c9756d0178cb2.zip |
Copy Javadoc to @Builder setters
Diffstat (limited to 'test/transform/resource/before/BuilderJavadoc.java')
-rw-r--r-- | test/transform/resource/before/BuilderJavadoc.java | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/test/transform/resource/before/BuilderJavadoc.java b/test/transform/resource/before/BuilderJavadoc.java new file mode 100644 index 00000000..93b8bedf --- /dev/null +++ b/test/transform/resource/before/BuilderJavadoc.java @@ -0,0 +1,66 @@ +import java.util.List; + +@lombok.Builder +class BuilderJavadoc<T> { + /** + * Will not get a setter on the builder. + */ + private final int noshow = 0; + + /** + * Yes, yes gets a setter. + * @see #also + * @param tag is moved to the setter. + * @return tag is removed from the setter. + */ + private final int yes; + + /** + * getsetwith gets a builder setter, an instance getter and setter, and a wither. + * @param tag is moved to the setters and wither. + * @return tag is moved to the getter. + */ + @lombok.Getter + @lombok.Setter + @lombok.experimental.Wither + private int getsetwith; + + /** + * Predef has a predefined builder setter with no javadoc, and the builder setter does not get this one. + * @param tag remains on the field. + * @return tag remains on the field. + */ + private final int predef; + + /** + * predefWithJavadoc has a predefined builder setter with javadoc, so it keeps that one untouched. + * @param tag is removed from the field. + * @return tag remains on the field. + */ + private final int predefWithJavadoc; + + private List<T> also; + + /** + * But this one doesn't. + */ + private int $butNotMe; + + public static class BuilderJavadocBuilder<T> { + public BuilderJavadocBuilder<T> predef(final int x) { + this.predef = x * 10; + return this; + } + + /** + * This javadoc remains untouched. + * @param x 1/100 of the thing + * @return the updated builder + */ + public BuilderJavadocBuilder<T> predefWithJavadoc(final int x) { + this.predefWithJavadoc = x * 100; + return this; + } + } + +} |