]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/src/org/splat/simer/NotYetImplementedAction.java
Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / NotYetImplementedAction.java
1 package org.splat.simer;
2
3
4 public class NotYetImplementedAction extends Action {
5
6         /**
7          * Serial version ID.
8          */
9         private static final long serialVersionUID = 3131921588316476454L;
10         
11         /**
12          * Value of the menu property. 
13          * It can be: none, create, open, study, knowledge, sysadmin, help.
14          */
15         private String _menuProperty;
16         
17         /**
18          * Value of the title bar property. 
19          * It can be: study, knowledge.
20          */
21         private String _titleProperty;
22         
23         /**
24          * Property that indicates whether the current open study is editable or not.
25          * On the screen it looks like pen on the status icon, pop-up menu also can be called.
26          * It is necessary for correct building the title bar.
27          */
28         private String _editDisabledProperty = "false";
29         
30         /**
31          * Value of the tool bar property. 
32          * It can be: none, standard, study, back.
33          */
34         private String _toolProperty;
35         
36         /**
37          * Value of the left menu property. 
38          * It can be: open, study, knowledge, scenario.
39          */
40         private String _leftMenuProperty;
41
42 //  ==============================================================================================================================
43 //  Action methods
44 //  ==============================================================================================================================
45
46     public String doInitialize () {
47 //  -----------------------------   
48         
49         setMenuProperty("study");
50         setTitleProperty("study");
51         setEditDisabledProperty("true");
52         setToolProperty("none");
53         setLeftMenuProperty("study");
54         initializationFullScreenContext(_menuProperty, _titleProperty, _editDisabledProperty, _toolProperty, _leftMenuProperty);
55                 
56       return SUCCESS;
57     }
58     
59     /**
60          * Get the menuProperty.
61          * @return the menuProperty
62          */
63         public String getMenuProperty() {
64                 return _menuProperty;
65         }
66
67         /**
68          * Set the menuProperty.
69          * @param menuProperty the menuProperty to set
70          */
71         public void setMenuProperty(String menuProperty) {
72                 this._menuProperty = menuProperty;
73         }
74         
75         /**
76          * Get the _titleProperty.
77          * @return the _titleProperty
78          */
79         public String getTitleProperty() {
80                 return _titleProperty;
81         }
82
83         /**
84          * Set the _titleProperty.
85          * @param _titleProperty the titleProperty to set
86          */
87         public void setTitleProperty(String titleProperty) {
88                 _titleProperty = titleProperty;
89         }
90
91         /**
92          * Get the editDisabledProperty.
93          * @return the editDisabledProperty
94          */
95         public final String getEditDisabledProperty() {
96                 return _editDisabledProperty;
97         }
98
99         /**
100          * Set the editDisabledProperty.
101          * @param editDisabledProperty the editDisabledProperty to set
102          */
103         public final void setEditDisabledProperty(String editDisabledProperty) {
104                 _editDisabledProperty = editDisabledProperty;
105         }
106
107         /**
108          * Get the toolProperty.
109          * @return the toolProperty
110          */
111         public String getToolProperty() {
112                 return _toolProperty;
113         }
114
115         /**
116          * Set the toolProperty.
117          * @param toolProperty the toolProperty to set
118          */
119         public void setToolProperty(final String toolProperty) {
120                 _toolProperty = toolProperty;
121         }
122         
123         /**
124          * Get the leftMenuProperty.
125          * @return the leftMenuProperty
126          */
127         public String getLeftMenuProperty() {
128                 return _leftMenuProperty;
129         }
130
131         /**
132          * Set the leftMenuProperty.
133          * @param leftMenuProperty the leftMenuProperty to set
134          */
135         public void setLeftMenuProperty(final String leftMenuProperty) {
136                 _leftMenuProperty = leftMenuProperty;
137         }
138 }