]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/src/org/splat/simer/NotYetImplementedAction.java
Salome HOME
Actions menu properties are refactored, unnecessary code is removed.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / NotYetImplementedAction.java
1 package org.splat.simer;
2
3 import org.splat.wapp.Constants;
4
5 /**
6  * The action for not yet implemented functionality.
7  */
8 public class NotYetImplementedAction extends Action {
9
10         /**
11          * Serial version ID.
12          */
13         private static final long serialVersionUID = 3131921588316476454L;
14
15         // ==============================================================================================================================
16         // Action methods
17         // ==============================================================================================================================
18
19         /**
20          * Action initialization.
21          * 
22          * @return SUCCESS
23          */
24         public String doInitialize() {
25                 initializationFullScreenContext(Constants.STUDY_MENU,
26                                 Constants.STUDY_MENU, Constants.TRUE, Constants.NONE,
27                                 Constants.STUDY_MENU);
28
29                 setErrorCode("message.error.notyetimplemented");
30
31                 return SUCCESS;
32         }
33 }