aboutsummaryrefslogtreecommitdiff
path: root/test/bytecode/resource
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-08-15 22:59:49 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-08-15 22:59:49 +0200
commit240473a6c214679362bb3544ea414716f4c2062a (patch)
treee06ebd0e412cd8454ad1649d94c5e0919c4fa76e /test/bytecode/resource
parent81cfc844b90d347c01ec9e68dcd7554a75caa733 (diff)
parent4c23804837e854c4f4ebb0008b10241467550d3f (diff)
downloadlombok-240473a6c214679362bb3544ea414716f4c2062a.tar.gz
lombok-240473a6c214679362bb3544ea414716f4c2062a.tar.bz2
lombok-240473a6c214679362bb3544ea414716f4c2062a.zip
Merge branch 'postProcess'
Diffstat (limited to 'test/bytecode/resource')
-rw-r--r--test/bytecode/resource/Bar.java3
-rw-r--r--test/bytecode/resource/Baz.java2
-rw-r--r--test/bytecode/resource/Buux.java10
-rw-r--r--test/bytecode/resource/Foo.java20
4 files changed, 35 insertions, 0 deletions
diff --git a/test/bytecode/resource/Bar.java b/test/bytecode/resource/Bar.java
new file mode 100644
index 00000000..13cbf425
--- /dev/null
+++ b/test/bytecode/resource/Bar.java
@@ -0,0 +1,3 @@
+public interface Bar extends java.util.RandomAccess, java.util.Map {
+ String getName();
+} \ No newline at end of file
diff --git a/test/bytecode/resource/Baz.java b/test/bytecode/resource/Baz.java
new file mode 100644
index 00000000..2525ed00
--- /dev/null
+++ b/test/bytecode/resource/Baz.java
@@ -0,0 +1,2 @@
+public interface Baz {
+} \ No newline at end of file
diff --git a/test/bytecode/resource/Buux.java b/test/bytecode/resource/Buux.java
new file mode 100644
index 00000000..33b352e2
--- /dev/null
+++ b/test/bytecode/resource/Buux.java
@@ -0,0 +1,10 @@
+public class Buux extends java.util.ArrayList {
+ public Buux() {
+ super(7);
+ addSomething();
+ }
+
+ public void addSomething() {
+ super.add("H\u3404l\0");
+ }
+} \ No newline at end of file
diff --git a/test/bytecode/resource/Foo.java b/test/bytecode/resource/Foo.java
new file mode 100644
index 00000000..2726026c
--- /dev/null
+++ b/test/bytecode/resource/Foo.java
@@ -0,0 +1,20 @@
+public class Foo implements java.util.RandomAccess {
+ private static final long LONG = 123L;
+ private static final String ONE = "Eén";
+ private static final int INT = 123;
+ private static final double DOUBLE = 1.23;
+ private static final double DOUBLE_NAN = Double.NaN;
+ private static final double DOUBLE_INF = Double.POSITIVE_INFINITY;
+ private static final double DOUBLE_NEG_INF = Double.NEGATIVE_INFINITY;
+
+ private static final float FLOAT = 1.23F;
+ private static final float FLOAT_NAN = Float.NaN;
+ private static final float FLOAT_INF = Float.POSITIVE_INFINITY;
+ private static final float FLOAT_NEG_INF = Float.NEGATIVE_INFINITY;
+
+ {
+ String value = toString();
+ System.out.print(value);
+ System.out.print("Two" + "Four");
+ }
+} \ No newline at end of file