public Time(int aHour, int aMin, int aSec) { hour = aHour; min = new Int60(aMin); sec = new Int60(aSec); }
public Time(int hour, int min, int sec) { this.hour = hour; this.min = new Int60(min); this.sec = new Int60(sec); }