Class ChangeAdapter

  • All Implemented Interfaces:
    ChangeListener

    public class ChangeAdapter
    extends java.lang.Object
    implements ChangeListener
    Provides default implementation of methods for ChangeListener.
    Author:
    Daniel Sagenschneider
    • Constructor Summary

      Constructors 
      Constructor Description
      ChangeAdapter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterTransactionOperation​(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
      Notified after the ITransactionalOperation is registered for execution.
      void beforeTransactionOperation​(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
      Notified before the ITransactionalOperation is registered for execution.
      void postApply​(Change<?> change)
      Notified post-applying the Change.
      void postRevert​(Change<?> change)
      Notified post-reverting the Change.
      void preApply​(Change<?> change)
      Notified pre-applying the Change.
      void preRevert​(Change<?> change)
      Notified pre-reverting the Change.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ChangeAdapter

        public ChangeAdapter()
    • Method Detail

      • beforeTransactionOperation

        public void beforeTransactionOperation​(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
        Description copied from interface: ChangeListener
        Notified before the ITransactionalOperation is registered for execution.
        Specified by:
        beforeTransactionOperation in interface ChangeListener
        Parameters:
        operation - ITransactionalOperation.
      • afterTransactionOperation

        public void afterTransactionOperation​(org.eclipse.gef.mvc.fx.operations.ITransactionalOperation operation)
        Description copied from interface: ChangeListener
        Notified after the ITransactionalOperation is registered for execution.
        Specified by:
        afterTransactionOperation in interface ChangeListener
        Parameters:
        operation - ITransactionalOperation.