Package org.jsoup.helper
Class ChangeNotifyingArrayList<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<E>
org.jsoup.helper.ChangeNotifyingArrayList<E>
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Iterable<E>
,Collection<E>
,List<E>
,RandomAccess
@Deprecated public abstract class ChangeNotifyingArrayList<E> extends ArrayList<E>
Deprecated.
this class is no longer used and will be removed in jsoup 1.21.1.
Implementation of ArrayList that watches out for changes to the contents.
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.boolean
Deprecated.boolean
Deprecated.boolean
Deprecated.void
clear()
Deprecated.abstract void
Deprecated.remove
(int index) Deprecated.boolean
remove
(Object o) Deprecated.boolean
removeAll
(Collection<?> c) Deprecated.protected void
removeRange
(int fromIndex, int toIndex) Deprecated.boolean
retainAll
(Collection<?> c) Deprecated.Deprecated.Methods inherited from class java.util.ArrayList
clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, removeIf, replaceAll, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
containsAll
-
Constructor Details
-
Method Details
-
onContentsChanged
public abstract void onContentsChanged()Deprecated. -
set
Deprecated. -
add
Deprecated. -
add
Deprecated. -
remove
Deprecated. -
remove
public boolean remove(Object o) Deprecated. -
clear
public void clear()Deprecated. -
addAll
Deprecated. -
addAll
Deprecated. -
removeRange
protected void removeRange(int fromIndex, int toIndex) Deprecated.- Overrides:
-
removeRange
in classArrayList<E>
-
removeAll
public boolean removeAll(Collection<?> c) Deprecated. -
retainAll
public boolean retainAll(Collection<?> c) Deprecated.
-