aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java')
-rw-r--r--test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java b/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
index 28395fcd..0f007350 100644
--- a/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
+++ b/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
@@ -41,21 +41,33 @@ public class SuperBuilderWithSetterPrefix {
protected abstract B self();
@java.lang.SuppressWarnings("all")
public abstract C build();
+ /**
+ * @return {@code this}.
+ */
@java.lang.SuppressWarnings("all")
public B withField1(final int field1) {
this.field1 = field1;
return self();
}
+ /**
+ * @return {@code this}.
+ */
@java.lang.SuppressWarnings("all")
public B withObtainViaField(final int obtainViaField) {
this.obtainViaField = obtainViaField;
return self();
}
+ /**
+ * @return {@code this}.
+ */
@java.lang.SuppressWarnings("all")
public B withObtainViaMethod(final int obtainViaMethod) {
this.obtainViaMethod = obtainViaMethod;
return self();
}
+ /**
+ * @return {@code this}.
+ */
@java.lang.SuppressWarnings("all")
public B withObtainViaStaticMethod(final String obtainViaStaticMethod) {
this.obtainViaStaticMethod = obtainViaStaticMethod;
@@ -154,6 +166,9 @@ public class SuperBuilderWithSetterPrefix {
@java.lang.Override
@java.lang.SuppressWarnings("all")
public abstract C build();
+ /**
+ * @return {@code this}.
+ */
@java.lang.SuppressWarnings("all")
public B setField3(final double field3) {
this.field3 = field3;