Salome HOME
Fix for generating a description for version relation during checkin.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / common / properties / MessageKeyEnum.java
index ce03ca850e0edeeed0704e13531f2616eee9cbfb..39483be5a3cfc6e94e9dbc9f31313598e7027024 100644 (file)
@@ -37,6 +37,10 @@ public enum MessageKeyEnum {
         * Unable to re-index the study #{0}, reason: {1}.
         */
        STD_000001("STD-000001"),
+       /**
+        * The study #{0} is not found.
+        */
+       STD_000002("STD-000002"),
        /**
         * Scenario doesn't contain the step number #{0}.
         */
@@ -78,21 +82,48 @@ public enum MessageKeyEnum {
         */
        KNT_000001("KNT-000001"),
        /**
-        * Knowledge element type "{0}" already exists.
+        * Simulation context type "{0}" already exists.
         */
        SCT_000001("SCT-000001"),
+       /**
+        * Simulation context type name could not be blank.
+        */
+       SCT_000002("SCT-000002"),
        /**
         * Document type "{0}" already exists.
         */
-       DCT_000001("DCT-000001");
-       
+       DCT_000001("DCT-000001"),
+       /**
+        * Can not delete the document "{0}" because it is used by other documents.
+        */
+       DCT_000002("DCT-000002"),
+       /**
+        * DCT-000003=Can not save a document in {0} state. Check the validation cycle.
+        */
+       DCT_000003("DCT-000003"),
+       /**
+        * DCT-000004=The source file can not be replaced. The document must be external or in In-Work state.
+        */
+       DCT_000004("DCT-000004"),
+       /**
+        * DCT-000005=Document checked in by {0}.
+        */
+       DCT_000005("DCT-000005"),
+       /**
+        * Parameter {0} is invalid with value: {1}.
+        */
+       PRM_000001("PRM-000001"),
+       /**
+        * Incompatible data: X-units or Y-units are not the same for all comparable studies.
+        */
+       IDT_000001("IDT-000001");
        /**
        * Value.
        */
        private final String _value;
                
        /**
-       * The enum contructor with param(s).
+       * The enum constructor with param(s).
        * @param value The value
        */
        MessageKeyEnum(final String value) {