April 05
Prde. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
Métodos de ListIterator
npublic interface ListIterator<E> extends Iterator<E> {
n  // Moving forward
n  boolean hasNext();
n  E next();
n  // Moving backward
n  boolean hasPrevious();
n  E previous();
n  // Indexed access
n  int nextIndex();
n  int previousIndex();
n  // Operations on current position
n  void remove();                     // Optional - remove current position
n  void set(E o);                       // Optional - overwrites l element returned
n  void add(E o);                      // Optional – add before current position
n}
target =
"_self" - show in the current frame
"_parent" - show in the parent frame
"_top" - show in the topmost frame
"_blank" - show in a new unnamed top-level window
name - show in a new top-level window named name