Nodes * with nextNode as well as a skip method inherited from * RangeIterator. * * @author Markus Nix * @package phpcr */ interface NodeIterator extends RangeIterator { /** * Returns the next Node in the iteration. * * @return the next Node in the iteration. * @throws NoSuchElementException if iteration has no more Nodes. */ public function nextNode(); } ?>