CaRMtl/eric/GUI/window/clock.java
2018-09-04 22:51:42 -04:00

30 lines
715 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package eric.GUI.window;
import java.util.Calendar;
/**
*
* @author erichake
*/
public class clock {
private static long time;
// public static void start(){
// time=Calendar.getInstance().getTimeInMillis();
// System.out.println("-- start --");
// }
// public static void stop(){
// System.out.println((Calendar.getInstance().getTimeInMillis()-time)+" ms");
// }
// public static void print(String message){
// long newtime=Calendar.getInstance().getTimeInMillis();
// System.out.println(message+" : "+(newtime-time));
// time=newtime;
// }
}