Uses of Interface
java.util.ListIterator

Packages that use ListIterator
de.cau.cs.kieler.core.util General purpose utility classes in the style of java.util
de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph Slim graph representation for undirected graphs, used in many graph algorithms. 
java.util Utilities 
 

Uses of ListIterator in de.cau.cs.kieler.core.util
 

Classes in de.cau.cs.kieler.core.util that implement ListIterator
 class FilteredIterator<E>
          An iterator that filters the elements returned by a wrapped iterator.
 

Constructors in de.cau.cs.kieler.core.util with parameters of type ListIterator
FilteredIterator(ListIterator<E> thewrappedIter, ICondition<E> thecondition)
          Creates a filtered iterator for a given list iterator and a condition.
 

Uses of ListIterator in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph that return ListIterator
 ListIterator<KSlimFace.BorderEntry> KSlimFace.getIterator(KSlimEdge edge, boolean forward)
          Gets a list iterator with the current position at the given edge.
 ListIterator<KSlimNode.IncEntry> KSlimNode.getIterator(KSlimEdge edge, boolean outgoing)
          Gets a list iterator for this node's incidence list, with the current position at the given edge.
 

Uses of ListIterator in java.util
 

Methods in java.util that return ListIterator
 ListIterator<E> List.listIterator()
           
 ListIterator<E> ArrayList.listIterator(int index)
           
 ListIterator<E> List.listIterator(int index)