Interface DatabaseListener

All Known Implementing Classes:
DatabaseViewer

public interface DatabaseListener
Interface used by the Database to notify other objects of changes in its contents.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called whenever an action is added to the database.
    void
    Called whenever an action is removed from the database.
  • Method Details

    • actionAdded

      void actionAdded(ActionDBEntry adb)
      Called whenever an action is added to the database.
      Parameters:
      adb - action added to the database.
    • actionRemoved

      void actionRemoved(ActionDBEntry adb)
      Called whenever an action is removed from the database.
      Parameters:
      adb - action removed.