Interface BookmarkProvider.BookmarkListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void onBookmarksChanged(@NonNull() List<Bookmark> bookmarks) Called when bookmark list has been changed in some way.
      void onBookmarkAdded(@NonNull() Bookmark bookmark) Called when a new bookmark was added.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • onBookmarksChanged

        @UiThread() abstract void onBookmarksChanged(@NonNull() List<Bookmark> bookmarks)

        Called when bookmark list has been changed in some way. Called on the UI thread. It is also called if any property of any bookmark in the list changes.

        Parameters:
        bookmarks - List of bookmarks after change.
      • onBookmarkAdded

        @UiThread() void onBookmarkAdded(@NonNull() Bookmark bookmark)

        Called when a new bookmark was added. Called on the UI thread.

        Parameters:
        bookmark - The recently added bookmark.