summaryrefslogtreecommitdiffstats
path: root/contrib/java/common/org/uscxml/helper/StopWatch.java
blob: 29ce43480c7a474bd986a61cb17235233b6caac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.uscxml.helper;

public class StopWatch {

	public StopWatch() {
	}
	
	public void reset() {
		System.out.println("RESET");
	}
	
	public void start() {
		System.out.println("START");
	}
	public void stop() {
		System.out.println("STOP");
	}
	
}