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