IndexListIterator che implementa Iterator mediante un array list. Implementazione di Iterator mediante cursore : ElementIterator per PositionList. Aggiunti alcuni metodi e spostato le classi IndexListIterator,ElementIterator nel package Iterator.

This commit is contained in:
2014-04-06 21:55:57 +02:00
parent 7f3a0bfc24
commit 9e23828342
10 changed files with 205 additions and 75 deletions

View File

@@ -37,8 +37,5 @@ public interface PositionList<E> extends Iterable<E> {
public E set(Position<E> p, E e) throws InvalidPositionException;
public Iterator<Position<E>> positions();
}