Salome HOME
Cancel operation work correctly in the case of empty title of the document on the...
[tools/siman.git] / Workspace / Siman / src / org / splat / wapp / Constants.java
index 67ca84e11608de1ea54866a4b29c06219eedb8df..1011ac95658b5647d21d8fdd10da6b9428852ac7 100644 (file)
@@ -8,12 +8,16 @@
  * @copyright      OPEN CASCADE 2012
  *****************************************************************************/
 
-package org.splat.wapp; 
+package org.splat.wapp;
 
 /**
  * SIMAN constants.
  */
 public class Constants {
+       /**
+        * Create menu key.
+        */
+       public final static String CREATE_MENU = "create";
        /**
         * Standard menu key.
         */
@@ -22,10 +26,18 @@ public class Constants {
         * Study menu key.
         */
        public final static String STUDY_MENU = "study";
+       /**
+        * Scenario menu key.
+        */
+       public final static String SCENARIO_MENU = "scenario";
        /**
         * Knowledge menu key.
         */
        public final static String KNOWLEDGE_MENU = "knowledge";
+       /**
+        * Sysadmin menu key.
+        */
+       public final static String SYSADMIN_MENU = "sysadmin";
        /**
         * No selected item key.
         */
@@ -34,8 +46,40 @@ public class Constants {
         * TRUE literal constant.
         */
        public final static String TRUE = "true";
+       /**
+        * FALSE literal constant.
+        */
+       public final static String FALSE = "false";
        /**
         * Scenario properties menu key.
         */
        public final static String PROP_SCENARIO = "prop-scenario";
+       /**
+        * Tool property "back".
+        */
+       public final static String BACK = "back";
+       /**
+        * Left menu property "open".
+        */
+       public final static String OPEN = "open";
+       /**
+        * Empty element icon.
+        */
+       public static final String IMG_EMPTY = "icon.empty.png";
+       /**
+        * Checked element icon.
+        */
+       public static final String IMG_CHECKED = "icon.checked.png";
+       /**
+        * Finished element icon.
+        */
+       public static final String IMG_DONE = "icon.done.png";
+       /**
+        * Checked out element icon.
+        */
+       public static final String IMG_CHECKEDOUT = "icon.checkedout.png";
+       /**
+        * "unchecked" literal constant for annotations.
+        */
+       public static final String UNCHECKED = "unchecked";
 }