TransactionalEditingDomainEvent.getTransaction()
Queries the transaction for which the event signals a change, or
null if the event pertains to the editing domain, itself.
InternalTransaction
An internal interface that must be provided by any implementation of the
public
Transaction interface, in order to function correctly in
the transactional editing domain framework.
EMFCommandTransaction
A transaction implementation use by the command stack to wrap the execution
of
Commands, to provide them the write access that they need.
TriggerCommandTransaction
A transaction implementation used by the command stack to wrap the execution
of
TriggerCommands, to provide them the write access that they need.
TransactionImpl.collectsNotifications(
Transaction tx)
Queries whether the specified transaction collects notifications for
broadcast to listeners or for validation.
protected void
TransactionalEditingDomainImpl.LifecycleImpl.fireLifecycleEvent(int type,
Transaction transaction)
Fires the specified life-cycle event to my listeners, if any.
TransactionValidator.getNotificationsForPostcommit(
Transaction tx)
Obtains the notifications that I need to broadcast in a post-commit
resource-change event for the specified transaction.
TransactionValidator.getNotificationsForPrecommit(
Transaction tx)
Obtains the notifications that I need to broadcast in a pre-commit
resource-change event for the specified transaction.
TransactionValidator.getNotificationsForValidation(
Transaction tx)
Obtains the notifications received, in order, during the execution of
the (possibly nested) transaction(s) that I am validating.
AbstractTransactionalCommandStack.rollback(
Transaction tx)
Ensures that the specified transaction is rolled back, first rolling
back a nested transaction (if any).
AbstractEMFOperation.didCommit(
Transaction transaction)
Hook for subclasses to learn that the specified transaction
has been successfully committed and, if necessary, to extract information
from it.
protected void
AbstractEMFOperation.didRedo(
Transaction tx)
Hook for subclasses to learn that the specified transaction
has been successfully redone and, if necessary, to extract information
from it.
protected void
AbstractEMFOperation.didUndo(
Transaction tx)
Hook for subclasses to learn that the specified transaction
has been successfully undone and, if necessary, to extract information
from it.