Package net.officefloor.gef.editor
Interface ChangeListener
-
- All Known Implementing Classes:
ChangeAdapter
public interface ChangeListenerListens toChangeinstances being executed.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)Notified after theITransactionalOperationis registered for execution.voidbeforeTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)Notified before theITransactionalOperationis registered for execution.voidpostApply(Change<?> change)Notified post-applying theChange.voidpostRevert(Change<?> change)Notified post-reverting theChange.voidpreApply(Change<?> change)Notified pre-applying theChange.voidpreRevert(Change<?> change)Notified pre-reverting theChange.
-
-
-
Method Detail
-
beforeTransactionOperation
void beforeTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified before theITransactionalOperationis registered for execution.- Parameters:
operation-ITransactionalOperation.
-
afterTransactionOperation
void afterTransactionOperation(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
Notified after theITransactionalOperationis 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.
-
-