KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > MyDate


1 public class MyDate
2 {
3   int d;
4   public MyDate(int d) { this.d = d; }
5   public int myCompareTo(MyDate ts)
6   {
7     System.err.println( "in MyDate" );
8     return d < ts.d ? -1 : d > ts.d ? 1 : 0;
9   }
10 }
11
Popular Tags