Helpviewer/Sync/SyncHandler.py

changeset 2954
bf0215fe12d1
parent 2302
f29e9405c851
child 3002
6ffc581f00f1
equal deleted inserted replaced
2953:703452a2876f 2954:bf0215fe12d1
115 } 115 }
116 116
117 def syncBookmarks(self): 117 def syncBookmarks(self):
118 """ 118 """
119 Public method to synchronize the bookmarks. 119 Public method to synchronize the bookmarks.
120
121 @exception NotImplementedError raised to indicate that this method
122 must be implemented by subclasses
120 """ 123 """
121 raise NotImplementedError 124 raise NotImplementedError
122 125
123 def syncHistory(self): 126 def syncHistory(self):
124 """ 127 """
125 Public method to synchronize the history. 128 Public method to synchronize the history.
129
130 @exception NotImplementedError raised to indicate that this method
131 must be implemented by subclasses
126 """ 132 """
127 raise NotImplementedError 133 raise NotImplementedError
128 134
129 def syncPasswords(self): 135 def syncPasswords(self):
130 """ 136 """
131 Public method to synchronize the passwords. 137 Public method to synchronize the passwords.
138
139 @exception NotImplementedError raised to indicate that this method
140 must be implemented by subclasses
132 """ 141 """
133 raise NotImplementedError 142 raise NotImplementedError
134 143
135 def syncUserAgents(self): 144 def syncUserAgents(self):
136 """ 145 """
137 Public method to synchronize the user agents. 146 Public method to synchronize the user agents.
147
148 @exception NotImplementedError raised to indicate that this method
149 must be implemented by subclasses
138 """ 150 """
139 raise NotImplementedError 151 raise NotImplementedError
140 152
141 def syncSpeedDial(self): 153 def syncSpeedDial(self):
142 """ 154 """
143 Public method to synchronize the speed dial data. 155 Public method to synchronize the speed dial data.
156
157 @exception NotImplementedError raised to indicate that this method
158 must be implemented by subclasses
144 """ 159 """
145 raise NotImplementedError 160 raise NotImplementedError
146 161
147 def initialLoadAndCheck(self, forceUpload): 162 def initialLoadAndCheck(self, forceUpload):
148 """ 163 """
149 Public method to do the initial check. 164 Public method to do the initial check.
150 165
151 @keyparam forceUpload flag indicating a forced upload of the files (boolean) 166 @keyparam forceUpload flag indicating a forced upload of the files (boolean)
167 @exception NotImplementedError raised to indicate that this method
168 must be implemented by subclasses
152 """ 169 """
153 raise NotImplementedError 170 raise NotImplementedError
154 171
155 def shutdown(self): 172 def shutdown(self):
156 """ 173 """
157 Public method to shut down the handler. 174 Public method to shut down the handler.
175
176 @exception NotImplementedError raised to indicate that this method
177 must be implemented by subclasses
158 """ 178 """
159 raise NotImplementedError 179 raise NotImplementedError
160 180
161 def readFile(self, fileName, type_): 181 def readFile(self, fileName, type_):
162 """ 182 """

eric ide

mercurial