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