aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/GetterAlreadyExists.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-11-29 01:07:53 +0100
committerRoel Spilker <r.spilker@gmail.com>2009-11-29 01:07:53 +0100
commitbe20f7a1180e4aa3d699d89c756c0c07e2eba1a7 (patch)
tree8ff277160a99fc7f2f6a11fdea60980979019195 /test/lombok/resource/after/GetterAlreadyExists.java
parent0b36718d20bf149b4bdd9b2be88bf68055311b9a (diff)
downloadlombok-be20f7a1180e4aa3d699d89c756c0c07e2eba1a7.tar.gz
lombok-be20f7a1180e4aa3d699d89c756c0c07e2eba1a7.tar.bz2
lombok-be20f7a1180e4aa3d699d89c756c0c07e2eba1a7.zip
Added tests for Setter, Cleanup and NonNull
Diffstat (limited to 'test/lombok/resource/after/GetterAlreadyExists.java')
-rw-r--r--test/lombok/resource/after/GetterAlreadyExists.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/test/lombok/resource/after/GetterAlreadyExists.java b/test/lombok/resource/after/GetterAlreadyExists.java
index 152cb372..fce1ba41 100644
--- a/test/lombok/resource/after/GetterAlreadyExists.java
+++ b/test/lombok/resource/after/GetterAlreadyExists.java
@@ -63,4 +63,70 @@ class Getter9 {
boolean getFoo() {
return false;
}
+}
+class Getter10 {
+ boolean foo;
+ static boolean hasFoo() {
+ return false;
+ }
+}
+class Getter11 {
+ boolean foo;
+ static boolean isFoo() {
+ return false;
+ }
+}
+class Getter12 {
+ boolean foo;
+ static boolean getFoo() {
+ return false;
+ }
+}
+class Getter13 {
+ String foo;
+ static boolean hasFoo() {
+ return false;
+ }
+ public String getFoo() {
+ return foo;
+ }
+}
+class Getter14 {
+ String foo;
+ static boolean isFoo() {
+ return false;
+ }
+ public String getFoo() {
+ return foo;
+ }
+}
+class Getter15 {
+ String foo;
+ static boolean getFoo() {
+ return false;
+ }
+}
+class Getter16 {
+ String foo;
+ static String hasFoo() {
+ return false;
+ }
+ public String getFoo() {
+ return foo;
+ }
+}
+class Getter17 {
+ String foo;
+ static String isFoo() {
+ return false;
+ }
+ public String getFoo() {
+ return foo;
+ }
+}
+class Getter18 {
+ String foo;
+ static String getFoo() {
+ return false;
+ }
} \ No newline at end of file