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