RiverRat - An MIT iCampus project | http://web.mit.edu/riverrat/ |
00001 package riverrat; 00002 00006 public class LiveRace extends Race { 00008 LiveRace() { 00009 super(); 00010 } 00011 00013 LiveRace(String host, int port) { 00014 super(host, port); 00015 } 00016 00022 public long getElapsedTime() { 00023 return System.currentTimeMillis() - starttime; 00024 } 00025 }