Salome HOME
Show URLs for previous versions of the document's files.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / TitleBarSettings.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   25.10.2012
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.simer; 
11
12 /**
13  * Settings for title bar.
14  * @author Maria KRUCHININA
15  *
16  */
17 public class TitleBarSettings {
18         
19         /**
20          * The progress state of the open study/knowledge.
21          */
22         private String _progressState;
23         
24         /**
25          * The selection state of the open study/knowledge.
26          */
27         private String _selectionState;
28         
29         /**
30          * The type of the open study/knowledge.
31          */
32         private String _entryType;
33         
34         /**
35          * The type title of the open study/knowledge.
36          */
37         private String _entryTypeTitle;
38         
39         /**
40          * The title of the open study/knowledge.
41          */
42         private String _entryTitle;
43         
44         /**
45          * Property that indicates whether the current open study is editable or not.
46          * On the screen it looks like pen on the status icon, pop-up menu also can be called.
47          * It is necessary for correct building the title bar.
48          */
49         private String _editDisabledProperty;
50
51         /**
52          * Get the progressState.
53          * @return the progressState
54          */
55         public String getProgressState() {
56                 return _progressState;
57         }
58
59         /**
60          * Set the progressState.
61          * @param progressState the progressState to set
62          */
63         public void setProgressState(final String progressState) {
64                 _progressState = progressState;
65         }
66         
67         /**
68          * Get the selectionState.
69          * @return the selectionState
70          */
71         public String getSelectionState() {
72                 return _selectionState;
73         }
74
75         /**
76          * Set the selectionState.
77          * @param selectionState the selectionState to set
78          */
79         public void setSelectionState(final String selectionState) {
80                 _selectionState = selectionState;
81         }
82         
83         /**
84          * Get the entryType.
85          * @return the entryType
86          */
87         public String getEntryType() {
88                 return _entryType;
89         }
90
91         /**
92          * Set the entryType.
93          * @param entryType the entryType to set
94          */
95         public void setEntryType(final String entryType) {
96                 _entryType = entryType;
97         }
98
99         /**
100          * Get the entryTypeTitle.
101          * @return the entryTypeTitle
102          */
103         public String getEntryTypeTitle() {
104                 return _entryTypeTitle;
105         }
106
107         /**
108          * Set the entryTypeTitle.
109          * @param entryTypeTitle the entryTypeTitle to set
110          */
111         public void setEntryTypeTitle(final String entryTypeTitle) {
112                 _entryTypeTitle = entryTypeTitle;
113         }
114
115         /**
116          * Get the entryTitle.
117          * @return the entryTitle
118          */
119         public String getEntryTitle() {
120                 return _entryTitle;
121         }
122
123
124         /**
125          * Set the entryTitle.
126          * @param entryTitle the entryTitle to set
127          */
128         public void setEntryTitle(final String entryTitle) {
129                 _entryTitle = entryTitle;
130         }
131
132         /**
133          * Get the editDisabledProperty.
134          * @return the editDisabledProperty
135          */
136         public String getEditDisabledProperty() {
137                 return _editDisabledProperty;
138         }
139
140         /**
141          * Set the editDisabledProperty.
142          * @param editDisabledProperty the editDisabledProperty to set
143          */
144         public void setEditDisabledProperty(final String editDisabledProperty) {
145                 _editDisabledProperty = editDisabledProperty;
146         }
147         
148 }