aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2013-09-09 23:54:28 +0200
committerRoel Spilker <r.spilker@gmail.com>2013-09-09 23:54:28 +0200
commit6a02cb40137788e6f77919c762b72b3d5880d2da (patch)
tree3c0f1c1a2108f1c65c15bb187e8b09534c8e99cc /test
parentf2662518de40569e073991bc70a1629881ba655e (diff)
downloadlombok-6a02cb40137788e6f77919c762b72b3d5880d2da.tar.gz
lombok-6a02cb40137788e6f77919c762b72b3d5880d2da.tar.bz2
lombok-6a02cb40137788e6f77919c762b72b3d5880d2da.zip
[jdk8support] We now handle doc comments internally, alleviating the need to try and keep up with the complete rewrites of the doc comment parser from java6 to java7 to java8. Still doesn't actually work in jdk8, but only because of a last-mile issue. (we communicate the doc comment via compilationUnit.docComments but that changed types in jdk8, we just need to make a wrapper to make that work).
Diffstat (limited to 'test')
-rw-r--r--test/transform/resource/after-delombok/GetterSetterJavadoc.java12
-rw-r--r--test/transform/resource/before/GetterSetterJavadoc.java12
2 files changed, 12 insertions, 12 deletions
diff --git a/test/transform/resource/after-delombok/GetterSetterJavadoc.java b/test/transform/resource/after-delombok/GetterSetterJavadoc.java
index 7bf92d1f..af9cbb5e 100644
--- a/test/transform/resource/after-delombok/GetterSetterJavadoc.java
+++ b/test/transform/resource/after-delombok/GetterSetterJavadoc.java
@@ -9,7 +9,7 @@ class GetterSetterJavadoc1 {
/**
* Getter section
*
- * @return Sky is blue
+ * @return Sky is blue1
*/
@java.lang.SuppressWarnings("all")
public int getFieldName() {
@@ -18,7 +18,7 @@ class GetterSetterJavadoc1 {
/**
* Some text
*
- * @param fieldName Hello, World
+ * @param fieldName Hello, World1
*/
@java.lang.SuppressWarnings("all")
public void setFieldName(final int fieldName) {
@@ -60,7 +60,7 @@ class GetterSetterJavadoc2 {
/**
* Some text
*
- * @return Sky is blue
+ * @return Sky is blue2
*/
@java.lang.SuppressWarnings("all")
public int getFieldName() {
@@ -69,7 +69,7 @@ class GetterSetterJavadoc2 {
/**
* Some text
*
- * @param fieldName Hello, World
+ * @param fieldName Hello, World2
*/
@java.lang.SuppressWarnings("all")
public void setFieldName(final int fieldName) {
@@ -83,7 +83,7 @@ class GetterSetterJavadoc3 {
private int fieldName;
/**
* Getter section
- * @return Sky is blue
+ * @return Sky is blue3
*/
@java.lang.SuppressWarnings("all")
public int getFieldName() {
@@ -91,7 +91,7 @@ class GetterSetterJavadoc3 {
}
/**
* Setter section
- * @param fieldName Hello, World
+ * @param fieldName Hello, World3
*/
@java.lang.SuppressWarnings("all")
public void setFieldName(final int fieldName) {
diff --git a/test/transform/resource/before/GetterSetterJavadoc.java b/test/transform/resource/before/GetterSetterJavadoc.java
index e3ae0aac..0dc64092 100644
--- a/test/transform/resource/before/GetterSetterJavadoc.java
+++ b/test/transform/resource/before/GetterSetterJavadoc.java
@@ -3,11 +3,11 @@ class GetterSetterJavadoc1 {
/**
* Some text
*
- * @param fieldName Hello, World
+ * @param fieldName Hello, World1
* --- GETTER ---
* Getter section
*
- * @return Sky is blue
+ * @return Sky is blue1
*/
private int fieldName;
}
@@ -16,8 +16,8 @@ class GetterSetterJavadoc2 {
/**
* Some text
*
- * @param fieldName Hello, World
- * @return Sky is blue
+ * @param fieldName Hello, World2
+ * @return Sky is blue2
*/
@lombok.Getter @lombok.Setter private int fieldName;
}
@@ -28,10 +28,10 @@ class GetterSetterJavadoc3 {
*
* **SETTER**
* Setter section
- * @param fieldName Hello, World
+ * @param fieldName Hello, World3
* **GETTER**
* Getter section
- * @return Sky is blue
+ * @return Sky is blue3
*/
@lombok.Getter @lombok.Setter private int fieldName;
}