Salome HOME
ScenarioService.getScenarioInfo method is added.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / technical / ProjectSettingsService.java
index 524c556b6d4c9723e814a53737851a929bca4bce..bdb7273ab186dcde79a71f35b38ec7ff50d6072b 100644 (file)
@@ -32,6 +32,10 @@ public interface ProjectSettingsService {
                 * The sequential number of the step.
                 */
                private int _number;
+               /**
+                * The step's key name.
+                */
+               private String _key;
 
                /**
                 * The owner of the step: study or scenario.
@@ -158,6 +162,22 @@ public interface ProjectSettingsService {
                public void setModule(final String module) {
                        _module = module;
                }
+
+               /**
+                * Get the key.
+                * @return the key
+                */
+               public String getKey() {
+                       return _key;
+               }
+
+               /**
+                * Set the key.
+                * @param key the key to set
+                */
+               public void setKey(final String key) {
+                       _key = key;
+               }
        }
 
        /**