@see java.util.List#listIterator()
()
| 2990 | * @see java.util.List#listIterator() |
| 2991 | */ |
| 2992 | public ListIterator<E> listIterator() { |
| 2993 | return new CheckedListIterator<E>(l.listIterator(), type); |
| 2994 | } |
| 2995 | |
| 2996 | /** |
| 2997 | * @see java.util.List#listIterator(int) |
nothing calls this directly
no test coverage detected