View Javadoc

1   /*
2    * @(#)$Id: GraffitiNumber.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 Palm Graffiti number 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 Palm Graffiti number set.
30   * @version 1.0 May 1, 2007
31   * @author Beat Signer, signer@inf.ethz.ch
32   */
33  public class GraffitiNumber {
34  
35     public static final String GESTURE_SET = "gestureSets/graffiti_numbers.xml";
36  
37     public static final String NUMBER_0 = "0_Graffiti";
38  
39     public static final String NUMBER_1 = "1_Graffiti";
40  
41     public static final String NUMBER_2 = "2_Graffiti";
42  
43     public static final String NUMBER_3 = "3_Graffiti";
44  
45     public static final String NUMBER_4 = "4_Graffiti";
46  
47     public static final String NUMBER_5 = "5_Graffiti";
48  
49     public static final String NUMBER_6 = "6_Graffiti";
50  
51     public static final String NUMBER_7 = "7_Graffiti";
52  
53     public static final String NUMBER_8 = "8_Graffiti";
54  
55     public static final String NUMBER_9 = "9_Graffiti";
56  
57  }