1 5 package org.prevayler.foundation; 6 7 public class StopWatch { 8 9 private final long t0 = System.currentTimeMillis(); 10 11 static public StopWatch start() { 12 return new StopWatch(); 13 } 14 15 public long millisEllapsed() { 16 return System.currentTimeMillis() - t0; 17 } 18 19 public double secondsEllapsed() { 20 return millisEllapsed() / 1000.0; 21 } 22 23 private StopWatch() { 24 } 25 } 26 | Popular Tags |