Interface ActionBasedChangeListener

All Known Implementing Classes:
ActionBasedChangeListenerImpl

public interface ActionBasedChangeListener
notifies all change on the AST
  • Method Details

    • onDelete

      void onDelete(DeleteAction action)
      when an element is removed
      Parameters:
      action - contains information of the change
    • onDeleteAll

      void onDeleteAll(DeleteAllAction action)
      when all element are removed
      Parameters:
      action - contains information of the change
    • onAdd

      void onAdd(AddAction action)
      when an element is added
      Parameters:
      action - contains information of the change
    • onUpdate

      void onUpdate(UpdateAction action)
      when an element is modified
      Parameters:
      action - contains information of the change
    • onAction

      void onAction(Action action)
      when an element is changed
      Parameters:
      action - contains information of the change