Returns a ListIterator on the elements of this list. The elements are iterated in the same order that they occur in the list. @return a ListIterator on the elements of this list @see ListIterator
()
| 603 | * @see ListIterator |
| 604 | */ |
| 605 | public ListIterator<E> listIterator() { |
| 606 | return listIterator(0); |
| 607 | } |
| 608 | |
| 609 | /** |
| 610 | * Returns a list iterator on the elements of this list. The elements are |
no outgoing calls
no test coverage detected