VisClient/org/hfbk/util/Sleeper.java

Go to the documentation of this file.
00001 package org.hfbk.util;
00002 
00004 public class Sleeper {
00005         public static void sleep(long  millis){
00006                 try {
00007                         Thread.sleep(millis);
00008                 } catch (InterruptedException e) {
00009                         throw new RuntimeException (e);
00010                 }
00011         } 
00012 }

Generated on Tue Apr 7 17:57:20 2009 for visclient by  doxygen 1.5.1