212 |
212 |
213 @param editor reference to the editor to work on |
213 @param editor reference to the editor to work on |
214 @type Editor |
214 @type Editor |
215 """ |
215 """ |
216 pass |
216 pass |
|
217 |
|
218 def hasBulletedList(self): |
|
219 """ |
|
220 Public method to indicate the availability of bulleted list markup. |
|
221 |
|
222 @return flag indicating the availability of bulleted list markup |
|
223 @rtype bool |
|
224 """ |
|
225 return False |
|
226 |
|
227 def bulletedList(self, editor): |
|
228 """ |
|
229 Public method to generate bulleted list text. |
|
230 |
|
231 @param editor reference to the editor to work on |
|
232 @type Editor |
|
233 """ |
|
234 pass |
|
235 |
|
236 def hasNumberedList(self): |
|
237 """ |
|
238 Public method to indicate the availability of numbered list markup. |
|
239 |
|
240 @return flag indicating the availability of numbered list markup |
|
241 @rtype bool |
|
242 """ |
|
243 return False |
|
244 |
|
245 def numberedList(self, editor): |
|
246 """ |
|
247 Public method to generate numbered list text. |
|
248 |
|
249 @param editor reference to the editor to work on |
|
250 @type Editor |
|
251 """ |
|
252 pass |