(int location)
| 300 | } |
| 301 | |
| 302 | @Override |
| 303 | public ListIterator<E> listIterator(int location) { |
| 304 | if (modCount == fullList.modCount) { |
| 305 | if (0 <= location && location <= size) { |
| 306 | return new SubAbstractListIterator<E>(fullList |
| 307 | .listIterator(location + offset), this, offset, |
| 308 | size); |
| 309 | } |
| 310 | throw new IndexOutOfBoundsException(); |
| 311 | } |
| 312 | throw new ConcurrentModificationException(); |
| 313 | } |
| 314 | |
| 315 | @Override |
| 316 | public E remove(int location) { |