jdk 1.1 part 3
[nestedvm.git] / src / org / ibex / nestedvm / util / Sort.java
1 package org.ibex.nestedvm.util;
2
3 public final class Sort {
4     private Sort() { }
5     
6     public interface Sortable {
7         public int compareTo(Object o);
8     }
9     
10     public static void sort(Sortable[] a) {
11         throw new Error("FIXME");
12     }
13 }