16     private static final long UNDEFINIERT = 0;
 
   17     long naechsterSchritt = UNDEFINIERT;
 
   27         if (naechsterSchritt == UNDEFINIERT) {
 
   28             naechsterSchritt = System.currentTimeMillis() + dt;
 
   31             long wartezeit = naechsterSchritt - System.currentTimeMillis();
 
   33                 Thread.sleep(wartezeit);
 
   35         } 
catch (InterruptedException ie) {
 
   36             System.err.println(ie.getLocalizedMessage());
 
   40         naechsterSchritt = System.currentTimeMillis() + dt;