Salome HOME
Some PMD rules are satisfied.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / LeftMenuSettings.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   30.10.2012
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.simer; 
11
12 import org.splat.wapp.Menu;
13
14 /**
15  * Settings for the left menu.
16  * @author Maria KRUCHININA
17  *
18  */
19 public class LeftMenuSettings {
20         
21         /**
22          * The name of the left menu.
23          */
24         private String _menuName;
25         
26         /**
27          * The name space of the left menu.
28          */
29         private String _menuNamespace;
30         
31         /**
32          * The left menu.
33          */
34         private Menu _menu;
35
36         /**
37          * Get the menuName.
38          * @return the menuName
39          */
40         public String getMenuName() {
41                 return _menuName;
42         }
43
44         /**
45          * Set the menuName.
46          * @param menuName the menuName to set
47          */
48         public void setMenuName(final String menuName) {
49                 this._menuName = menuName;
50         }
51
52         /**
53          * Get the menuNamespace.
54          * @return the menuNamespace
55          */
56         public String getMenuNamespace() {
57                 return _menuNamespace;
58         }
59
60         /**
61          * Set the menuNamespace.
62          * @param menuNamespace the menuNamespace to set
63          */
64         public void setMenuNamespace(final String menuNamespace) {
65                 this._menuNamespace = menuNamespace;
66         }
67
68         /**
69          * Get the menu.
70          * @return the menu
71          */
72         public Menu getMenu() {
73                 return _menu;
74         }
75
76         /**
77          * Set the menu.
78          * @param menu the menu to set
79          */
80         public void setMenu(final Menu menu) {
81                 this._menu = menu;
82         }
83         
84         
85 }