View Javadoc

1   /*
2    * @(#)$Id: MultiStroke.java 689 2009-07-22 00:10:27Z bsigner $
3    *
4    * Author		:	Beat Signer, signer@inf.ethz.ch
5    *
6    * Purpose		:   Some constants for the multi-stroke gesture set.
7    *
8    * -----------------------------------------------------------------------
9    *
10   * Revision Information:
11   *
12   * Date				Who			Reason
13   *
14   * Mar 1, 2007		bsigner		Initial Release
15   *
16   * -----------------------------------------------------------------------
17   *
18   * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
19   *
20   * This software is the proprietary information of ETH Zurich.
21   * Use is subject to license terms.
22   * 
23   */
24  
25  
26  package org.ximtec.igesture.gestureset;
27  
28  /**
29   * Some constants for the multi-stroke gesture set.
30   * @version 1.0 May 1, 2007
31   * @author Beat Signer, signer@inf.ethz.ch
32   */
33  public class MultiStroke {
34  
35     public static final String GESTURE_SET = "gestureSets/multistroke_gestures.xml";
36  
37     public static final String DOUBLE_LINE = "Double-Line";
38  
39     public static final String X = "X";
40  
41     public static final String ARROW_LEFT_RIGHT = "Arrow-Left-Right";
42     
43     public static final String ARROW_RIGHT_LEFT = "Arrow-Right-Left";
44     
45     public static final String DOLLAR = "Dollar";
46     
47     public static final String TIC_TAC_TOE = "TicTacToe";
48     
49     public static final String SMILEY = "Smiley";
50     
51     public static final String SEMI_CIRCLES = "Semi-Circles";
52     
53     public static final String ANGLE = "Angle";
54     
55     public static final String MEAN = "Mean";
56     
57     public static final String STAR = "Star";
58     
59     public static final String INTERFACE = "Interface";
60     
61     public static final String CLASS = "Class";
62     
63     public static final String DOWN = "Down";
64     
65     public static final String LEFT_RIGHT = "Left-Right";
66  
67  }