//An interface to provide the ability to recieve arbitrary time updates from an external source interface Timed { public void updateTime(); // public int MINUTE; // public int HOUR; // public int SECOND; } //end class