Interface LibraryManager.Listener

Enclosing interface:
LibraryManager

public static interface LibraryManager.Listener
The interface that should be implemented to listen for modifications of the library.
  • Method Details

    • onLibraryItemAdded

      void onLibraryItemAdded(LibraryItem item)
      The callback called after an item has been added to the library.
      Parameters:
      item - The added item.
    • onLibraryItemRemoved

      void onLibraryItemRemoved(LibraryItem item)
      The callback called after an item has been removed from the library.
      Parameters:
      item - The removed item.
    • onLibraryItemChanged

      void onLibraryItemChanged(LibraryItem item)
      The callback called after a library item has been modified.
      Parameters:
      item - The modified item.