nsITransaction
| IID: | 58e330c1-7b48-11d2-98b9-00805f297d89 |
| Inherits From: | nsISupports |
Properties
readonly PRBool isTransient
The transaction's transient state. This attribute is checked by the transaction manager after the transaction's Execute() method is called. If the transient state is false, a reference to the transaction is held by the transaction manager so that the transactions' undoTransaction() and redoTransaction() methods can be called. If the transient state is true, the transaction manager returns immediately after the transaction's doTransaction() method is called, no references to the transaction are maintained. Transient transactions cannot be undone or redone by the transaction manager.
Methods
void doTransaction ( )
PRBool merge ( nsITransaction transaction )
void redoTransaction ( )
void undoTransaction ( )
PRBool merge ( nsITransaction transaction )
Attempts to merge a transaction into "this" transaction. Both transactions must be in their undo state, doTransaction() methods already called. The transaction manager calls this method to coalesce a new transaction with the transaction on the top of the undo stack. This method returns a boolean value that indicates the merge result. A true value indicates that the transactions were merged successfully, a false value if the merge was not possible or failed. If true, the transaction manager will Release() the new transacton instead of pushing it on the undo stack.
- Arguments:
- transaction: the previously executed transaction to merge.
Executes the transaction again. Can only be called on a transaction that was previously undone.
In most cases, the redoTransaction() method will actually call the doTransaction() method to execute the transaction again.
References
This interface is passed as an argument to the following methods:
nsIEditor.doTransaction, nsITransaction.merge, nsITransactionListener.didDo, nsITransactionListener.didMerge, nsITransactionListener.didRedo, nsITransactionListener.didUndo, nsITransactionListener.willDo, nsITransactionListener.willMerge, nsITransactionListener.willRedo, nsITransactionListener.willUndo, nsITransactionManager.doTransaction
This interface is returned from the following methods:
nsINavBookmarksService.getRemoveFolderTransaction, nsIPlacesTransactionsService.aggregateTransactions, nsIPlacesTransactionsService.createFolder, nsIPlacesTransactionsService.createItem, nsIPlacesTransactionsService.createLivemark, nsIPlacesTransactionsService.createSeparator, nsIPlacesTransactionsService.editBookmarkKeyword, nsIPlacesTransactionsService.editBookmarkMicrosummary, nsIPlacesTransactionsService.editBookmarkPostData, nsIPlacesTransactionsService.editBookmarkURI, nsIPlacesTransactionsService.editItemDateAdded, nsIPlacesTransactionsService.editItemDescription, nsIPlacesTransactionsService.editItemLastModified, nsIPlacesTransactionsService.editItemTitle, nsIPlacesTransactionsService.editLivemarkFeedURI, nsIPlacesTransactionsService.editLivemarkSiteURI, nsIPlacesTransactionsService.moveItem, nsIPlacesTransactionsService.removeItem, nsIPlacesTransactionsService.setLoadInSidebar, nsIPlacesTransactionsService.sortFolderByName, nsIPlacesTransactionsService.tagURI, nsIPlacesTransactionsService.untagURI, nsITransactionList.getItem, nsITransactionManager.peekRedoStack, nsITransactionManager.peekUndoStack
Reference documentation is generated from Mozilla's source.
