1 /*
2 * @(#)$Id: GestureHandler.java 689 2009-07-22 00:10:27Z bsigner $
3 *
4 * Author : Ueli Kurmann, igesture@uelikurmann.ch
5 *
6 *
7 * Purpose : Handles and dispatches gesture result sets.
8 *
9 * -----------------------------------------------------------------------
10 *
11 * Revision Information:
12 *
13 * Date Who Reason
14 *
15 * 18.06.2008 ukurmann Initial Release
16 * 26.09.2008 bsigner Cleanup
17 *
18 * -----------------------------------------------------------------------
19 *
20 * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
21 *
22 * This software is the proprietary information of ETH Zurich.
23 * Use is subject to license terms.
24 *
25 */
26
27
28 package org.ximtec.igesture.event;
29
30 import org.ximtec.igesture.core.ResultSet;
31
32
33 /**
34 * Handles and dispatches gesture result sets.
35 *
36 * @version 1.0 18.06.2008
37 * @author Ueli Kurmann
38 * @author Beat Signer, signer@inf.ethz.ch
39 */
40 public interface GestureHandler {
41
42 /**
43 * Handles and dispatches the given gesture result set.
44 * @param resultSet the gesture result set to be handled.
45 */
46 public void handle(ResultSet resultSet);
47
48 }