// Textbook fragment 06.15 /** Returns an iterator of all the elements in the list. */ public Iterator iterator() { return new ElementIterator(this); }