Skip navigation links

Serialized Form

  • onItemRemovedListeners

    java.util.Collection<E> onItemRemovedListeners
    The listeners to receive callbacks when an item is removed from this Collection. The listeners must be called if a call to one of the following methods results in one or more elements being removed from the Collection:

  • ArrayListWithCallbacks.remove(int)
  • ArrayListWithCallbacks.remove(Object)
  • ArrayListWithCallbacks.removeAll(Collection)
  • ArrayListWithCallbacks.set(int, Object)
  • ArrayListWithCallbacks.retainAll(Collection)
  • Each removed element must have a separate callback invocation.

  • onListClearedListeners

    java.util.Collection<E> onListClearedListeners
    The listeners to receive callbacks when this Collection is cleared. The listeners must be called each time ArrayListWithCallbacks.clear() is invoked, even if the Collection was empty at the time of invocation.
  • Skip navigation links