aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-11-27 04:18:28 +0100
committerRoel Spilker <r.spilker@gmail.com>2009-11-27 04:23:41 +0100
commit391db3dcecdd0d94eb76b656e655346891b02bb4 (patch)
tree592d79167f4f5a6ce92813cfd962fa51228d3ee0 /test/lombok/resource/after
parente54c3f36e3122dfe34a119178cfcca2dcdbad998 (diff)
downloadlombok-391db3dcecdd0d94eb76b656e655346891b02bb4.tar.gz
lombok-391db3dcecdd0d94eb76b656e655346891b02bb4.tar.bz2
lombok-391db3dcecdd0d94eb76b656e655346891b02bb4.zip
Thorough work on inserting comments in the proper place for delombok; should now work fine with GWT native methods!
NON-NLS-1 is still theoretically problematic, but that'll be a fix for another day. Also added ability to recognize that nothing has changed, which will copy the original file instead of reparsing it.
Diffstat (limited to 'test/lombok/resource/after')
-rw-r--r--test/lombok/resource/after/CommentsInterspersed.java20
1 files changed, 7 insertions, 13 deletions
diff --git a/test/lombok/resource/after/CommentsInterspersed.java b/test/lombok/resource/after/CommentsInterspersed.java
index ec5374c0..f3841606 100644
--- a/test/lombok/resource/after/CommentsInterspersed.java
+++ b/test/lombok/resource/after/CommentsInterspersed.java
@@ -1,26 +1,20 @@
-import lombok.Getter;
-
+/* cmt */
+/* cmt2 */
+/* cmt3 */
/*bla */
public class CommentsInterspersed {
/** javadoc for field */
private int x;
/* bla2 */
- @Getter()
- private String test = "foo";
- //$NON-NLS-1$
+ private String test = "foo"; //$NON-NLS-1$
/** Javadoc on method */
- public native void gwtTest();
- /*-{
+ public native void gwtTest(); /*-{
javascript;
}-*/
- public CommentsInterspersed() {
- }
-
public String getTest() {
- return this.test;
+ return test;
}
-}
-//haha!
+} //haha!