java.util.Collection<E> onItemAddedListeners
Collection. The
listeners must be called if a call to one of the following methods results in one or more
elements being added to the Collection:
ArrayListWithCallbacks.add(Object)ArrayListWithCallbacks.add(int, Object)ArrayListWithCallbacks.addAll(Collection)ArrayListWithCallbacks.addAll(int, Collection)ArrayListWithCallbacks.set(int, Object)java.util.Collection<E> onItemRemovedListeners
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)java.util.Collection<E> onListClearedListeners
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.