summaryrefslogtreecommitdiffstats
path: root/test/bindings/java/org/uscxml/helper/StopWatch.java
blob: 4123ba12bb23d3f9eca73cfdbab5256e4feb0d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.uscxml.helper;

import org.uscxml.Data;
import org.uscxml.DataModelExtension;

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");
	}
	
}