001 package org.shiftone.jrat.util.time;
002
003
004 import org.shiftone.jrat.util.log.Logger;
005
006
007 /**
008 * @author jeff@shiftone.org (Jeff Drost)
009 */
010 public class Clock {
011
012 private static final Logger LOG = Logger.getLogger(Clock.class);
013
014 private static final Class[] NOARG_TYPES = {};
015
016 public static long currentTimeMillis() {
017 return System.currentTimeMillis();
018 }
019
020 // todo - use this method
021 public static void pauseTime() {
022 // MOVEMENT.pauseTime();
023 }
024
025 // todo - use this method
026 public static void resumeTime() {
027 //MOVEMENT.resumeTime();
028 }
029
030
031 }