Salome HOME
<jsp:param ... > parameters are removed from the title bar
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / EditStudyAction.java
index 3fce95321c9f620a95edd04b150512d0aa98e170..6a4f468dbf22752f1bdfc17945bfba4708bd83fb 100644 (file)
@@ -20,6 +20,19 @@ public class EditStudyAction extends DisplayStudyStepAction {
         * It can be: none, create, open, study, knowledge, sysadmin, help.
         */
        private String _menuProperty;
+       
+       /**
+        * Value of the title bar property. 
+        * It can be: study, knowledge.
+        */
+       private String _titleProperty;
+       
+       /**
+        * Property that indicates whether the current open study is editable or not.
+        * On the screen it looks like pen on the status icon, pop-up menu also can be called.
+        * It is necessary for correct building the title bar.
+        */
+       private String _editDisabledProperty = "false";
 
 //  ==============================================================================================================================
 //  Action methods
@@ -37,7 +50,8 @@ public class EditStudyAction extends DisplayStudyStepAction {
         mystudy.getPopup().setContext("study", mystudy.getStudyRights());   // The context has changed
         
         setMenuProperty("study");
-               initializationScreenContext(_menuProperty);
+        setTitleProperty("study");
+        initializationScreenContext(_menuProperty, _titleProperty, _editDisabledProperty);
 
         return SUCCESS;
          }
@@ -80,4 +94,35 @@ public class EditStudyAction extends DisplayStudyStepAction {
        public void setMenuProperty(String menuProperty) {
                this._menuProperty = menuProperty;
        }
+       
+       /**
+        * Get the _titleProperty.
+        * @return the _titleProperty
+        */
+       public String getTitleProperty() {
+               return _titleProperty;
+       }
+
+       /**
+        * Set the _titleProperty.
+        * @param _titleProperty the titleProperty to set
+        */
+       public void setTitleProperty(String titleProperty) {
+               _titleProperty = titleProperty;
+       }
+       /**
+        * Get the editDisabledProperty.
+        * @return the editDisabledProperty
+        */
+       public final String getEditDisabledProperty() {
+               return _editDisabledProperty;
+       }
+       /**
+        * Set the editDisabledProperty.
+        * @param editDisabledProperty the editDisabledProperty to set
+        */
+       public final void setEditDisabledProperty(String editDisabledProperty) {
+               _editDisabledProperty = editDisabledProperty;
+       }
+
 }
\ No newline at end of file