make jdk 1.1 compliant part 2
[nestedvm.git] / src / org / ibex / nestedvm / util / Sort.java
diff --git a/src/org/ibex/nestedvm/util/Sort.java b/src/org/ibex/nestedvm/util/Sort.java
new file mode 100644 (file)
index 0000000..bf5c8dd
--- /dev/null
@@ -0,0 +1,13 @@
+package org.ibex.nestedvm.util;
+
+public final class Sort {
+    private Sort() { }
+    
+    public interface Sortable {
+        public int compareTo(Object o);
+    }
+    
+    public static void sort(Sortable[] a) {
+        throw new Error("FIXME");
+    }
+}