wrapper classes
authorbdemsky <bdemsky>
Fri, 15 May 2009 05:31:35 +0000 (05:31 +0000)
committerbdemsky <bdemsky>
Fri, 15 May 2009 05:31:35 +0000 (05:31 +0000)
Robust/src/ClassLibrary/Objectwrapper.java [new file with mode: 0644]
Robust/src/ClassLibrary/bytewrapper.java [new file with mode: 0644]
Robust/src/ClassLibrary/charwrapper.java [new file with mode: 0644]
Robust/src/ClassLibrary/doublewrapper.java [new file with mode: 0644]
Robust/src/ClassLibrary/floatwrapper.java [new file with mode: 0644]
Robust/src/ClassLibrary/intwrapper.java [new file with mode: 0644]

diff --git a/Robust/src/ClassLibrary/Objectwrapper.java b/Robust/src/ClassLibrary/Objectwrapper.java
new file mode 100644 (file)
index 0000000..f0819bd
--- /dev/null
@@ -0,0 +1,4 @@
+public class Objectwrapper {
+    public Objectwrapper() {}
+    Object value;
+}
\ No newline at end of file
diff --git a/Robust/src/ClassLibrary/bytewrapper.java b/Robust/src/ClassLibrary/bytewrapper.java
new file mode 100644 (file)
index 0000000..1fd482a
--- /dev/null
@@ -0,0 +1,4 @@
+public class bytewrapper {
+    public bytewrapper() {}
+    byte value;
+}
\ No newline at end of file
diff --git a/Robust/src/ClassLibrary/charwrapper.java b/Robust/src/ClassLibrary/charwrapper.java
new file mode 100644 (file)
index 0000000..c7dcabb
--- /dev/null
@@ -0,0 +1,4 @@
+public class charwrapper {
+    public charwrapper() {}
+    char value;
+}
\ No newline at end of file
diff --git a/Robust/src/ClassLibrary/doublewrapper.java b/Robust/src/ClassLibrary/doublewrapper.java
new file mode 100644 (file)
index 0000000..ed33846
--- /dev/null
@@ -0,0 +1,4 @@
+public class doublewrapper {
+    public doublewrapper() {}
+    double value;
+}
\ No newline at end of file
diff --git a/Robust/src/ClassLibrary/floatwrapper.java b/Robust/src/ClassLibrary/floatwrapper.java
new file mode 100644 (file)
index 0000000..56e1b76
--- /dev/null
@@ -0,0 +1,4 @@
+public class floatwrapper {
+    public floatwrapper() {}
+    float value;
+}
\ No newline at end of file
diff --git a/Robust/src/ClassLibrary/intwrapper.java b/Robust/src/ClassLibrary/intwrapper.java
new file mode 100644 (file)
index 0000000..90b4827
--- /dev/null
@@ -0,0 +1,4 @@
+public class intwrapper {
+  public intwrapper() {}
+  int value;
+}