Skip to content

Commit

Permalink
phpCR:
Browse files Browse the repository at this point in the history
* Added NodeTypeIterator interface (forgot this in r562)
  • Loading branch information
kdambekalns committed Feb 23, 2008
1 parent 3e0985b commit 7481381
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions Classes/T3_phpCR_NodeTypeIteratorInterface.php
@@ -0,0 +1,37 @@
<?php
declare(ENCODING = 'utf-8');

/* *
* This script is part of the TYPO3 project - inspiring people to share! *
* *
* TYPO3 is free software; you can redistribute it and/or modify it under *
* the terms of the GNU General Public License version 2 as published by *
* the Free Software Foundation. *
* *
* This script is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- *
* TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General *
* Public License for more details. *
* */

/**
* A NodeTypeIterator interface
*
* @package phpCR
* @version $Id$
* @copyright Copyright belongs to the respective authors
* @license http://opensource.org/licenses/gpl-license.php GNU Public License, version 2
*/
interface T3_phpCR_NodeTypeIteratorInterface extends T3_phpCR_RangeIteratorInterface {

/**
* Returns the next NodeType in the iteration.
*
* @return T3_phpCR_NodeTypeInterface
* @throws T3_phpCR_NoSuchElementException if the iterator contains no more elements.
*/
public function nextNodeType();

}

?>

0 comments on commit 7481381

Please sign in to comment.