public Clock() { this.hours = new ClockHand(24); this.minutes = new ClockHand(60); this.seconds = new ClockHand(60); }
public Timer() { this.hundredths = new ClockHand(100); this.seconds = new ClockHand(60); }
public Timer() { this.seconds = new ClockHand(60); this.hunderedSecond = new ClockHand(100); }