StopWatch.java :  » SAP » sapandroid » de » schnocklake » demo » android » sapclient2 » Android Open Source

Android Open Source » SAP » sapandroid 
sapandroid » de » schnocklake » demo » android » sapclient2 » StopWatch.java
package de.schnocklake.demo.android.sapclient2;

import java.util.Date;

public class StopWatch {
  public static Date startTimestamp = null;
  
  public static void start() {
    startTimestamp = new Date();
  }
  
  public static long getTime() {
    return new Date().getTime() - startTimestamp.getTime();
  }  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.