aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-12-02 10:27:31 +0100
committerReinier Zwitserloot <reinier@tipit.to>2009-12-02 10:27:31 +0100
commitdb212a2fa08bf43b782cb422526cb3b4f809e295 (patch)
tree22f7fc606ec8b6b13c0ed0dd2e1470383724f8f7 /test/delombok/resource/after
parentbc88c1f99b1d0972f5a209a6de81739b6e00e61e (diff)
parent9f69893ce2efd6ca0a6ef64022e48e49fc2b33f0 (diff)
downloadlombok-db212a2fa08bf43b782cb422526cb3b4f809e295.tar.gz
lombok-db212a2fa08bf43b782cb422526cb3b4f809e295.tar.bz2
lombok-db212a2fa08bf43b782cb422526cb3b4f809e295.zip
Merge branch 'master' of git@github.com:rzwitserloot/lombok
Diffstat (limited to 'test/delombok/resource/after')
-rw-r--r--test/delombok/resource/after/CleanupName.java12
-rw-r--r--test/delombok/resource/after/DataPlain.java76
-rw-r--r--test/delombok/resource/after/GetterAccessLevel.java25
-rw-r--r--test/delombok/resource/after/SetterAccessLevel.java6
-rw-r--r--test/delombok/resource/after/SneakyThrowsMultiple.java45
-rw-r--r--test/delombok/resource/after/SneakyThrowsPlain.java17
-rw-r--r--test/delombok/resource/after/SneakyThrowsSingle.java26
-rw-r--r--test/delombok/resource/after/SynchronizedName.java5
8 files changed, 207 insertions, 5 deletions
diff --git a/test/delombok/resource/after/CleanupName.java b/test/delombok/resource/after/CleanupName.java
index 26997372..cd29eb68 100644
--- a/test/delombok/resource/after/CleanupName.java
+++ b/test/delombok/resource/after/CleanupName.java
@@ -1,5 +1,5 @@
-class Cleanup {
- void test() throws Exception {
+class CleanupName {
+ void test() {
Object o = "Hello World!";
try {
System.out.println(o);
@@ -7,4 +7,12 @@ class Cleanup {
o.toString();
}
}
+ void test2() {
+ Object o = "Hello World too!";
+ try {
+ System.out.println(o);
+ } finally {
+ o.toString();
+ }
+ }
}
diff --git a/test/delombok/resource/after/DataPlain.java b/test/delombok/resource/after/DataPlain.java
new file mode 100644
index 00000000..6b7aeae6
--- /dev/null
+++ b/test/delombok/resource/after/DataPlain.java
@@ -0,0 +1,76 @@
+class Data1 {
+ final int x;
+ String name;
+ public Data1(final int x) {
+ this.x = x;
+ }
+ public int getX() {
+ return x;
+ }
+ public String getName() {
+ return name;
+ }
+ public void setName(final String name) {
+ this.name = name;
+ }
+ @java.lang.Override
+ public boolean equals(final java.lang.Object o) {
+ if (o == this) return true;
+ if (o == null) return false;
+ if (o.getClass() != this.getClass()) return false;
+ final Data1 other = (Data1)o;
+ if (this.x != other.x) return false;
+ if (this.name == null ? other.name != null : !this.name.equals(other.name)) return false;
+ return true;
+ }
+ @java.lang.Override
+ public int hashCode() {
+ final int PRIME = 31;
+ int result = 1;
+ result = result * PRIME + this.x;
+ result = result * PRIME + (this.name == null ? 0 : this.name.hashCode());
+ return result;
+ }
+ @java.lang.Override
+ public java.lang.String toString() {
+ return "Data1(x=" + x + ", name=" + name + ")";
+ }
+}
+class Data2 {
+ final int x;
+ String name;
+ public Data2(final int x) {
+ this.x = x;
+ }
+ public int getX() {
+ return x;
+ }
+ public String getName() {
+ return name;
+ }
+ public void setName(final String name) {
+ this.name = name;
+ }
+ @java.lang.Override
+ public boolean equals(final java.lang.Object o) {
+ if (o == this) return true;
+ if (o == null) return false;
+ if (o.getClass() != this.getClass()) return false;
+ final Data2 other = (Data2)o;
+ if (this.x != other.x) return false;
+ if (this.name == null ? other.name != null : !this.name.equals(other.name)) return false;
+ return true;
+ }
+ @java.lang.Override
+ public int hashCode() {
+ final int PRIME = 31;
+ int result = 1;
+ result = result * PRIME + this.x;
+ result = result * PRIME + (this.name == null ? 0 : this.name.hashCode());
+ return result;
+ }
+ @java.lang.Override
+ public java.lang.String toString() {
+ return "Data2(x=" + x + ", name=" + name + ")";
+ }
+}
diff --git a/test/delombok/resource/after/GetterAccessLevel.java b/test/delombok/resource/after/GetterAccessLevel.java
index eec84e85..e117b72a 100644
--- a/test/delombok/resource/after/GetterAccessLevel.java
+++ b/test/delombok/resource/after/GetterAccessLevel.java
@@ -1,9 +1,15 @@
-class Getter {
+class GetterAccessLevel {
boolean isNone;
boolean isPrivate;
boolean isPackage;
boolean isProtected;
boolean isPublic;
+ String noneString;
+ String privateString;
+ String packageString;
+ String protectedString;
+ String publicString;
+ String value;
private boolean isPrivate() {
return isPrivate;
}
@@ -16,4 +22,19 @@ class Getter {
public boolean isPublic() {
return isPublic;
}
-}
+ private String getPrivateString() {
+ return privateString;
+ }
+ String getPackageString() {
+ return packageString;
+ }
+ protected String getProtectedString() {
+ return protectedString;
+ }
+ public String getPublicString() {
+ return publicString;
+ }
+ public String getValue() {
+ return value;
+ }
+} \ No newline at end of file
diff --git a/test/delombok/resource/after/SetterAccessLevel.java b/test/delombok/resource/after/SetterAccessLevel.java
index 95179bac..d4e7ac23 100644
--- a/test/delombok/resource/after/SetterAccessLevel.java
+++ b/test/delombok/resource/after/SetterAccessLevel.java
@@ -1,9 +1,10 @@
-class Setter {
+class SetterAccessLevel {
boolean isNone;
boolean isPrivate;
boolean isPackage;
boolean isProtected;
boolean isPublic;
+ boolean value;
private void setIsPrivate(final boolean isPrivate) {
this.isPrivate = isPrivate;
}
@@ -16,4 +17,7 @@ class Setter {
public void setIsPublic(final boolean isPublic) {
this.isPublic = isPublic;
}
+ public void setValue(final boolean value) {
+ this.value = value;
+ }
}
diff --git a/test/delombok/resource/after/SneakyThrowsMultiple.java b/test/delombok/resource/after/SneakyThrowsMultiple.java
new file mode 100644
index 00000000..bab13990
--- /dev/null
+++ b/test/delombok/resource/after/SneakyThrowsMultiple.java
@@ -0,0 +1,45 @@
+import java.awt.AWTException;
+import java.io.IOException;
+import java.util.Random;
+class SneakyThrowsMultiple {
+ public void test() {
+ try {
+ try {
+ System.out.println("test1");
+ throw new IOException();
+ } catch (IOException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ } catch (Throwable $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+ public void test2() {
+ try {
+ try {
+ System.out.println("test2");
+ if (new Random().nextBoolean()) {
+ throw new IOException();
+ } else {
+ throw new AWTException("WHAT");
+ }
+ } catch (AWTException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ } catch (IOException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+ public void test3() {
+ try {
+ try {
+ System.out.println("test3");
+ throw new IOException();
+ } catch (IOException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ } catch (Throwable $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+} \ No newline at end of file
diff --git a/test/delombok/resource/after/SneakyThrowsPlain.java b/test/delombok/resource/after/SneakyThrowsPlain.java
new file mode 100644
index 00000000..d5abc478
--- /dev/null
+++ b/test/delombok/resource/after/SneakyThrowsPlain.java
@@ -0,0 +1,17 @@
+class SneakyThrowsPlain {
+ public void test() {
+ try {
+ System.out.println("test1");
+ } catch (java.lang.Throwable $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+
+ public void test2() {
+ try {
+ System.out.println("test2");
+ } catch (java.lang.Throwable $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+} \ No newline at end of file
diff --git a/test/delombok/resource/after/SneakyThrowsSingle.java b/test/delombok/resource/after/SneakyThrowsSingle.java
new file mode 100644
index 00000000..519d06a9
--- /dev/null
+++ b/test/delombok/resource/after/SneakyThrowsSingle.java
@@ -0,0 +1,26 @@
+import java.io.IOException;
+class SneakyThrowsSingle {
+ public void test() {
+ try {
+ System.out.println("test1");
+ } catch (Throwable $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+ public void test2() {
+ try {
+ System.out.println("test2");
+ throw new IOException();
+ } catch (IOException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+ public void test3() {
+ try {
+ System.out.println("test3");
+ throw new IOException();
+ } catch (IOException $ex) {
+ throw lombok.Lombok.sneakyThrow($ex);
+ }
+ }
+} \ No newline at end of file
diff --git a/test/delombok/resource/after/SynchronizedName.java b/test/delombok/resource/after/SynchronizedName.java
index a3e64796..066e3bdf 100644
--- a/test/delombok/resource/after/SynchronizedName.java
+++ b/test/delombok/resource/after/SynchronizedName.java
@@ -17,4 +17,9 @@ class SynchronizedName {
System.out.println("four");
}
}
+ void test5() {
+ synchronized (read) {
+ System.out.println("five");
+ }
+ }
}