]> SALOME platform Git repositories - tools/siman.git/blobdiff - Workspace/Siman/src/org/splat/simer/NotYetImplementedAction.java
Salome HOME
Tool bar is improved.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / NotYetImplementedAction.java
index d174af43ec6b5e4fe3ed88237e624c6e7ce567c3..97be0e680e287391cfad67617c8db0ee92309091 100644 (file)
@@ -26,6 +26,12 @@ public class NotYetImplementedAction extends Action {
         * It is necessary for correct building the title bar.
         */
        private String _editDisabledProperty = "false";
+       
+       /**
+        * Value of the tool bar property. 
+        * It can be: none, standard, study, back.
+        */
+       private String _toolProperty;
 
 //  ==============================================================================================================================
 //  Action methods
@@ -37,7 +43,8 @@ public class NotYetImplementedAction extends Action {
        setMenuProperty("study");
        setTitleProperty("study");
        setEditDisabledProperty("true");
-        initializationScreenContext(_menuProperty, _titleProperty, _editDisabledProperty);
+       setToolProperty("none");
+        initializationScreenContext(_menuProperty, _titleProperty, _editDisabledProperty, _toolProperty);
                
       return SUCCESS;
     }
@@ -90,5 +97,19 @@ public class NotYetImplementedAction extends Action {
                _editDisabledProperty = editDisabledProperty;
        }
 
-       
+       /**
+        * Get the toolProperty.
+        * @return the toolProperty
+        */
+       public String getToolProperty() {
+               return _toolProperty;
+       }
+
+       /**
+        * Set the toolProperty.
+        * @param toolProperty the toolProperty to set
+        */
+       public void setToolProperty(final String toolProperty) {
+               _toolProperty = toolProperty;
+       }
 }
\ No newline at end of file