1 
2 /**
3  * Trivial class; must implement an interesting interface.
4  */
5 public class Blah implements Comparable {
compareTo(Object another)6     public int compareTo(Object another) {
7         System.out.println("In compareTo");
8         return 0;
9     }
10 }
11