CSLib
Class Timer

java.lang.Object
  |
  +--CSLib.Timer

public class Timer
extends java.lang.Object

Timer is a utility class for causing a program to pause for a specified period of time.


Constructor Summary
Timer()
           
 
Method Summary
static void pause(long msec)
          Pauses for a specific period of time.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Timer

public Timer()
Method Detail

pause

public static void pause(long msec)
Pauses for a specific period of time.

Parameters:
msec - the specific number of milliseconds to pause.
See Also:
Thread.sleep(long)