/** ClockOfDoom represents time to some bad thing @author Phill Conrad @author Will M. @version 2013/04/09 for CS56 lecture */ public class ClockOfDoom { /** Constructor @param event Something that will happen @param secondsRemaming how long til it happens */ public ClockOfDoom(String event, int secondsRemaining) { // assign attributes from parameters // STUB.. do nothing! } /** Get department Abbreviation (e.g. CMPSC, MATH, PSTAT) */ public String getEvent () { return "Stub, you sucka!"; } /** Get course number (e.g. "56", "3A", "120A") */ public int getSecondsRemaining () { return -1; } // @@@ STUB fixme!!! } // class ClockOfDoom