Propertys * with nextProperty as well as a skip method. * * @author Markus Nix * @package phpcr */ interface PropertyIterator extends RangeIterator { /** * Returns the next Property in the iteration. * * @return the next Property in the iteration. * @throws NoSuchElementException if iteration has no more Propertys. */ public function nextProperty(); } ?>