/**
  * Create a ListIterator for a list.
  *
  * @param parent  the parent list
  * @param fromIndex  the index to start at
  */
 protected internal LinkedListIterator(AbstractLinkedList parent, int fromIndex)
     : base()
 {// throws IndexOutOfBoundsException {
     this.parent           = parent;
     this.expectedModCount = parent.modCount;
     this.nextJ            = parent.getNode(fromIndex, true);
     this.nextIndexJ       = fromIndex;
 }