Package net.officefloor.gef.editor
Interface ChangeListener
-
- All Known Implementing Classes:
ChangeAdapter
public interface ChangeListener
Listens toChange
instances being executed.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified after theITransactionalOperation
is registered for execution.void
beforeTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified before theITransactionalOperation
is registered for execution.void
postApply(Change<?> change)
Notified post-applying theChange
.void
postRevert(Change<?> change)
Notified post-reverting theChange
.void
preApply(Change<?> change)
Notified pre-applying theChange
.void
preRevert(Change<?> change)
Notified pre-reverting theChange
.
-
-
-
Method Detail
-
beforeTransactionOperation
void beforeTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified before theITransactionalOperation
is registered for execution.- Parameters:
operation
-ITransactionalOperation
.
-
afterTransactionOperation
void afterTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified after theITransactionalOperation
is registered for execution.- Parameters:
operation
-ITransactionalOperation
.
-
preApply
void preApply(Change<?> change)
Notified pre-applying theChange
.- Parameters:
change
-Change
.
-
postApply
void postApply(Change<?> change)
Notified post-applying theChange
.- Parameters:
change
-Change
.
-
preRevert
void preRevert(Change<?> change)
Notified pre-reverting theChange
.- Parameters:
change
-Change
.
-
-