aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithMethodAbstract.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/WithMethodAbstract.java')
-rw-r--r--test/transform/resource/after-ecj/WithMethodAbstract.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/WithMethodAbstract.java b/test/transform/resource/after-ecj/WithMethodAbstract.java
index cb71357a..e0b14fc2 100644
--- a/test/transform/resource/after-ecj/WithMethodAbstract.java
+++ b/test/transform/resource/after-ecj/WithMethodAbstract.java
@@ -3,5 +3,8 @@ abstract class WithMethodAbstract {
WithMethodAbstract() {
super();
}
+ /**
+ * @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
+ */
public abstract @java.lang.SuppressWarnings("all") WithMethodAbstract withFoo(final String foo);
}