]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/src/org/splat/simer/NotYetImplementedAction.java
Salome HOME
Menus are improved
[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 //  Action methods
19 //  ==============================================================================================================================
20
21     public String doInitialize () {
22 //  -----------------------------   
23         
24         setMenuProperty("study");
25                 initializationScreenContext(_menuProperty);
26                 
27       return SUCCESS;
28     }
29     
30     /**
31          * Get the menuProperty.
32          * @return the menuProperty
33          */
34         public String getMenuProperty() {
35                 return _menuProperty;
36         }
37
38         /**
39          * Set the menuProperty.
40          * @param menuProperty the menuProperty to set
41          */
42         public void setMenuProperty(String menuProperty) {
43                 this._menuProperty = menuProperty;
44         }
45 }