Index: trunk/parsers/wikidom/lib/hype/models/es.DocumentModel.js |
— | — | @@ -318,6 +318,7 @@ |
319 | 319 | }; |
320 | 320 | |
321 | 321 | /** |
| 322 | + * Generates a transaction which inserts data at a given offset. |
322 | 323 | * |
323 | 324 | * @method |
324 | 325 | * @param {Integer} offset |
— | — | @@ -329,6 +330,7 @@ |
330 | 331 | }; |
331 | 332 | |
332 | 333 | /** |
| 334 | + * Generates a transaction which removes data from a given range. |
333 | 335 | * |
334 | 336 | * @method |
335 | 337 | * @param {es.Range} range |
— | — | @@ -339,6 +341,7 @@ |
340 | 342 | }; |
341 | 343 | |
342 | 344 | /** |
| 345 | + * Generates a transaction which annotates content within a given range. |
343 | 346 | * |
344 | 347 | * @method |
345 | 348 | * @returns {es.Transaction} |
— | — | @@ -348,6 +351,7 @@ |
349 | 352 | }; |
350 | 353 | |
351 | 354 | /** |
| 355 | + * Generates a transaction which changes attributes on an element at a given index. |
352 | 356 | * |
353 | 357 | * @method |
354 | 358 | * @returns {es.Transaction} |
— | — | @@ -357,6 +361,7 @@ |
358 | 362 | }; |
359 | 363 | |
360 | 364 | /** |
| 365 | + * Applies a transaction to the content data. |
361 | 366 | * |
362 | 367 | * @method |
363 | 368 | * @param {es.Transaction} |
— | — | @@ -366,6 +371,7 @@ |
367 | 372 | }; |
368 | 373 | |
369 | 374 | /** |
| 375 | + * Reverses a transaction's effects on the content data. |
370 | 376 | * |
371 | 377 | * @method |
372 | 378 | * @param {es.Transaction} |