diff options
Diffstat (limited to 'test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java')
-rw-r--r-- | test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java b/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java index 25f6f876..5438f576 100644 --- a/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java +++ b/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java @@ -9,6 +9,9 @@ public class SuperBuilderWithCustomBuilderMethod { }
protected abstract @java.lang.SuppressWarnings("all") B self();
public abstract @java.lang.SuppressWarnings("all") C build();
+ /**
+ * @return {@code this}.
+ */
public @java.lang.SuppressWarnings("all") B field1(final A field1) {
this.field1 = field1;
return self();
@@ -79,6 +82,9 @@ public class SuperBuilderWithCustomBuilderMethod { }
protected abstract @java.lang.Override @java.lang.SuppressWarnings("all") B self();
public abstract @java.lang.Override @java.lang.SuppressWarnings("all") C build();
+ /**
+ * @return {@code this}.
+ */
public @java.lang.SuppressWarnings("all") B field3(final double field3) {
this.field3 = field3;
return self();
|