forked from projectlombok/lombok
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fixes projectlombok#2481] Copy constructor javadoc to builder methods
- Loading branch information
Showing
4 changed files
with
183 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
test/transform/resource/after-delombok/BuilderConstructorJavadoc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import java.util.List; | ||
|
||
class BuilderConstructorJavadoc<T> { | ||
/** | ||
* This is a comment | ||
* | ||
* @param basic tag is moved to the setter | ||
* @param multiline a param comment | ||
* can be on multiple lines and can use | ||
* {@code @code} or <code>tags</code> | ||
* @param predef don't copy this one | ||
* @param predefWithJavadoc don't copy this one | ||
*/ | ||
BuilderConstructorJavadoc(int basic, int multiline, int predef, int predefWithJavadoc) { | ||
} | ||
|
||
|
||
public static class BuilderConstructorJavadocBuilder<T> { | ||
@java.lang.SuppressWarnings("all") | ||
private int basic; | ||
@java.lang.SuppressWarnings("all") | ||
private int multiline; | ||
@java.lang.SuppressWarnings("all") | ||
private int predef; | ||
@java.lang.SuppressWarnings("all") | ||
private int predefWithJavadoc; | ||
|
||
public BuilderConstructorJavadocBuilder<T> predef(final int x) { | ||
this.predef = x; | ||
return this; | ||
} | ||
|
||
/** | ||
* This javadoc remains untouched. | ||
* @param x 1/100 of the thing | ||
* @return the updated builder | ||
*/ | ||
public BuilderConstructorJavadocBuilder<T> predefWithJavadoc(final int x) { | ||
this.predefWithJavadoc = x; | ||
return this; | ||
} | ||
|
||
@java.lang.SuppressWarnings("all") | ||
BuilderConstructorJavadocBuilder() { | ||
} | ||
|
||
/** | ||
* @param basic tag is moved to the setter | ||
* @return {@code this}. | ||
*/ | ||
@java.lang.SuppressWarnings("all") | ||
public BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> basic(final int basic) { | ||
this.basic = basic; | ||
return this; | ||
} | ||
|
||
/** | ||
* @param multiline a param comment | ||
* can be on multiple lines and can use | ||
* {@code @code} or <code>tags</code> | ||
* @return {@code this}. | ||
*/ | ||
@java.lang.SuppressWarnings("all") | ||
public BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> multiline(final int multiline) { | ||
this.multiline = multiline; | ||
return this; | ||
} | ||
|
||
@java.lang.SuppressWarnings("all") | ||
public BuilderConstructorJavadoc<T> build() { | ||
return new BuilderConstructorJavadoc<T>(this.basic, this.multiline, this.predef, this.predefWithJavadoc); | ||
} | ||
|
||
@java.lang.Override | ||
@java.lang.SuppressWarnings("all") | ||
public java.lang.String toString() { | ||
return "BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder(basic=" + this.basic + ", multiline=" + this.multiline + ", predef=" + this.predef + ", predefWithJavadoc=" + this.predefWithJavadoc + ")"; | ||
} | ||
} | ||
|
||
@java.lang.SuppressWarnings("all") | ||
public static <T> BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> builder() { | ||
return new BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T>(); | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
test/transform/resource/after-ecj/BuilderConstructorJavadoc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import java.util.List; | ||
class BuilderConstructorJavadoc<T> { | ||
public static class BuilderConstructorJavadocBuilder<T> { | ||
private @java.lang.SuppressWarnings("all") int basic; | ||
private @java.lang.SuppressWarnings("all") int multiline; | ||
private @java.lang.SuppressWarnings("all") int predef; | ||
private @java.lang.SuppressWarnings("all") int predefWithJavadoc; | ||
public BuilderConstructorJavadocBuilder<T> predef(final int x) { | ||
this.predef = x; | ||
return this; | ||
} | ||
public BuilderConstructorJavadocBuilder<T> predefWithJavadoc(final int x) { | ||
this.predefWithJavadoc = x; | ||
return this; | ||
} | ||
@java.lang.SuppressWarnings("all") BuilderConstructorJavadocBuilder() { | ||
super(); | ||
} | ||
public @java.lang.SuppressWarnings("all") BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> basic(final int basic) { | ||
this.basic = basic; | ||
return this; | ||
} | ||
public @java.lang.SuppressWarnings("all") BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> multiline(final int multiline) { | ||
this.multiline = multiline; | ||
return this; | ||
} | ||
public @java.lang.SuppressWarnings("all") BuilderConstructorJavadoc<T> build() { | ||
return new BuilderConstructorJavadoc<T>(this.basic, this.multiline, this.predef, this.predefWithJavadoc); | ||
} | ||
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { | ||
return (((((((("BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder(basic=" + this.basic) + ", multiline=") + this.multiline) + ", predef=") + this.predef) + ", predefWithJavadoc=") + this.predefWithJavadoc) + ")"); | ||
} | ||
} | ||
@lombok.Builder BuilderConstructorJavadoc(int basic, int multiline, int predef, int predefWithJavadoc) { | ||
super(); | ||
} | ||
public static @java.lang.SuppressWarnings("all") <T>BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T> builder() { | ||
return new BuilderConstructorJavadoc.BuilderConstructorJavadocBuilder<T>(); | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
test/transform/resource/before/BuilderConstructorJavadoc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import java.util.List; | ||
|
||
class BuilderConstructorJavadoc<T> { | ||
/** | ||
* This is a comment | ||
* | ||
* @param basic tag is moved to the setter | ||
* @param multiline a param comment | ||
* can be on multiple lines and can use | ||
* {@code @code} or <code>tags</code> | ||
* @param predef don't copy this one | ||
* @param predefWithJavadoc don't copy this one | ||
*/ | ||
@lombok.Builder | ||
BuilderConstructorJavadoc(int basic, int multiline, int predef, int predefWithJavadoc) { | ||
|
||
} | ||
|
||
public static class BuilderConstructorJavadocBuilder<T> { | ||
public BuilderConstructorJavadocBuilder<T> predef(final int x) { | ||
this.predef = x; | ||
return this; | ||
} | ||
|
||
/** | ||
* This javadoc remains untouched. | ||
* @param x 1/100 of the thing | ||
* @return the updated builder | ||
*/ | ||
public BuilderConstructorJavadocBuilder<T> predefWithJavadoc(final int x) { | ||
this.predefWithJavadoc = x; | ||
return this; | ||
} | ||
} | ||
} |