179 """ |
179 """ |
180 self.__object = None |
180 self.__object = None |
181 |
181 |
182 def getPreferences(self, key): |
182 def getPreferences(self, key): |
183 """ |
183 """ |
184 Public method to retrieve the various refactoring settings. |
184 Public method to retrieve the various settings. |
185 |
185 |
186 @param key the key of the value to get |
186 @param key the key of the value to get |
187 @param prefClass preferences class used as the storage area |
187 @param prefClass preferences class used as the storage area |
188 @return the requested refactoring setting |
188 @return the requested refactoring setting |
189 """ |
189 """ |
199 else: |
199 else: |
200 return Preferences.Prefs.settings.value("Subversion/" + key) |
200 return Preferences.Prefs.settings.value("Subversion/" + key) |
201 |
201 |
202 def setPreferences(self, key, value): |
202 def setPreferences(self, key, value): |
203 """ |
203 """ |
204 Public method to store the various refactoring settings. |
204 Public method to store the various settings. |
205 |
205 |
206 @param key the key of the setting to be set |
206 @param key the key of the setting to be set |
207 @param value the value to be set |
207 @param value the value to be set |
208 @param prefClass preferences class used as the storage area |
208 @param prefClass preferences class used as the storage area |
209 """ |
209 """ |