Salome HOME
5ded1d20029eb857666ee53af692fc47ae4e2138
[tools/siman.git] / Workspace / Siman / src / org / splat / wapp / Constants.java
1 /*****************************************************************************
2  * Company         OPEN CASCADE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   08.11.2012
6  * @author         $Author$
7  * @version        $Revision$
8  * @copyright      OPEN CASCADE 2012
9  *****************************************************************************/
10
11 package org.splat.wapp;
12
13 /**
14  * SIMAN constants.
15  */
16 public class Constants {
17         /**
18          * Create menu key.
19          */
20         public final static String CREATE_MENU = "create";
21         /**
22          * Standard menu key.
23          */
24         public final static String STANDARD_MENU = "standard";
25         /**
26          * Study menu key.
27          */
28         public final static String STUDY_MENU = "study";
29         /**
30          * Scenario menu key.
31          */
32         public final static String SCENARIO_MENU = "scenario";
33         /**
34          * Knowledge menu key.
35          */
36         public final static String KNOWLEDGE_MENU = "knowledge";
37         /**
38          * No selected item key.
39          */
40         public final static String NONE = "none";
41         /**
42          * TRUE literal constant.
43          */
44         public final static String TRUE = "true";
45         /**
46          * FALSE literal constant.
47          */
48         public final static String FALSE = "false";
49         /**
50          * Scenario properties menu key.
51          */
52         public final static String PROP_SCENARIO = "prop-scenario";
53         /**
54          * Tool property "back".
55          */
56         public final static String BACK = "back";
57         /**
58          * Left menu property "open".
59          */
60         public final static String OPEN = "open";
61 }