/* TimeCompare.java Date: November 6, 2001 Author: Philip Heede - c991395@student.dtu.dk - - - - Defines static method equals() that compares two Time[] arrays for identical Time objects. The main() method gives a test case to demonstrate the functionality. */ public class TimeCompare { public static boolean equals(Time[] ttable1, Time[] ttable2) { if (ttable1.length != ttable2.length) return false; for(int i=0; i