aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterAlreadyExists.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/GetterAlreadyExists.java')
-rw-r--r--test/transform/resource/after-ecj/GetterAlreadyExists.java60
1 files changed, 30 insertions, 30 deletions
diff --git a/test/transform/resource/after-ecj/GetterAlreadyExists.java b/test/transform/resource/after-ecj/GetterAlreadyExists.java
index d5bb7e60..04f5b81e 100644
--- a/test/transform/resource/after-ecj/GetterAlreadyExists.java
+++ b/test/transform/resource/after-ecj/GetterAlreadyExists.java
@@ -1,14 +1,14 @@
class Getter1 {
@lombok.Getter boolean foo;
- public @java.lang.SuppressWarnings("all") boolean isFoo() {
- return this.foo;
- }
Getter1() {
super();
}
boolean hasFoo() {
return true;
}
+ public @java.lang.SuppressWarnings("all") boolean isFoo() {
+ return this.foo;
+ }
}
class Getter2 {
@lombok.Getter boolean foo;
@@ -30,27 +30,27 @@ class Getter3 {
}
class Getter4 {
@lombok.Getter String foo;
- public @java.lang.SuppressWarnings("all") String getFoo() {
- return this.foo;
- }
Getter4() {
super();
}
String hasFoo() {
return null;
}
-}
-class Getter5 {
- @lombok.Getter String foo;
public @java.lang.SuppressWarnings("all") String getFoo() {
return this.foo;
}
+}
+class Getter5 {
+ @lombok.Getter String foo;
Getter5() {
super();
}
String isFoo() {
return null;
}
+ public @java.lang.SuppressWarnings("all") String getFoo() {
+ return this.foo;
+ }
}
class Getter6 {
@lombok.Getter String foo;
@@ -63,27 +63,27 @@ class Getter6 {
}
class Getter7 {
@lombok.Getter String foo;
- public @java.lang.SuppressWarnings("all") String getFoo() {
- return this.foo;
- }
Getter7() {
super();
}
boolean hasFoo() {
return false;
}
-}
-class Getter8 {
- @lombok.Getter String foo;
public @java.lang.SuppressWarnings("all") String getFoo() {
return this.foo;
}
+}
+class Getter8 {
+ @lombok.Getter String foo;
Getter8() {
super();
}
boolean isFoo() {
return false;
}
+ public @java.lang.SuppressWarnings("all") String getFoo() {
+ return this.foo;
+ }
}
class Getter9 {
@lombok.Getter String foo;
@@ -96,15 +96,15 @@ class Getter9 {
}
class Getter10 {
@lombok.Getter boolean foo;
- public @java.lang.SuppressWarnings("all") boolean isFoo() {
- return this.foo;
- }
Getter10() {
super();
}
static boolean hasFoo() {
return false;
}
+ public @java.lang.SuppressWarnings("all") boolean isFoo() {
+ return this.foo;
+ }
}
class Getter11 {
@lombok.Getter boolean foo;
@@ -126,27 +126,27 @@ class Getter12 {
}
class Getter13 {
@lombok.Getter String foo;
- public @java.lang.SuppressWarnings("all") String getFoo() {
- return this.foo;
- }
Getter13() {
super();
}
static boolean hasFoo() {
return false;
}
-}
-class Getter14 {
- @lombok.Getter String foo;
public @java.lang.SuppressWarnings("all") String getFoo() {
return this.foo;
}
+}
+class Getter14 {
+ @lombok.Getter String foo;
Getter14() {
super();
}
static boolean isFoo() {
return false;
}
+ public @java.lang.SuppressWarnings("all") String getFoo() {
+ return this.foo;
+ }
}
class Getter15 {
@lombok.Getter String foo;
@@ -159,27 +159,27 @@ class Getter15 {
}
class Getter16 {
@lombok.Getter String foo;
- public @java.lang.SuppressWarnings("all") String getFoo() {
- return this.foo;
- }
Getter16() {
super();
}
static String hasFoo() {
return "";
}
-}
-class Getter17 {
- @lombok.Getter String foo;
public @java.lang.SuppressWarnings("all") String getFoo() {
return this.foo;
}
+}
+class Getter17 {
+ @lombok.Getter String foo;
Getter17() {
super();
}
static String isFoo() {
return "";
}
+ public @java.lang.SuppressWarnings("all") String getFoo() {
+ return this.foo;
+ }
}
class Getter18 {
@lombok.Getter String foo;