aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/SetterAndWithMethodJavadoc.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before/SetterAndWithMethodJavadoc.java')
-rw-r--r--test/transform/resource/before/SetterAndWithMethodJavadoc.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/transform/resource/before/SetterAndWithMethodJavadoc.java b/test/transform/resource/before/SetterAndWithMethodJavadoc.java
new file mode 100644
index 00000000..ba10b7f2
--- /dev/null
+++ b/test/transform/resource/before/SetterAndWithMethodJavadoc.java
@@ -0,0 +1,26 @@
+import lombok.With;
+class SetterAndWithMethodJavadoc {
+ /**
+ * Some value.
+ * @param the new value
+ */
+ @lombok.Setter @lombok.With int i;
+
+ /**
+ * Some other value.
+ *
+ * --- SETTER ---
+ * Set some other value.
+ * @param the new other value
+ *
+ * --- WITH ---
+ * Reinstantiate with some other value.
+ * @param the other new other value
+ */
+ @lombok.Setter @lombok.With int j;
+
+ SetterAndWithMethodJavadoc(int i, int j) {
+ this.i = i;
+ this.j = j;
+ }
+}