Clock

Have You Seen This Class?

interface Clock {
  long now();
}

class SystemClock implements Clock {
  public long now() { return System.currentTimeMillis(); }
}