~patrix-sbs/oraculum/git

« back to all changes in this revision

Viewing changes to models/doctrine/lib/Doctrine/Node/MaterializedPath/PreOrderIterator.php

  • Committer: Patrick Kaminski
  • Date: 2009-09-02 02:33:07 UTC
  • Revision ID: git-v1:943803254fca67bfb4c0374422b1b836b14dc518
Tags: v0.1a
Sending Oraculum Framework v0.1 alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/*
 
3
 *  $Id: PreOrderIterator.php 3884 2008-02-22 18:26:35Z jwage $
 
4
 *
 
5
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
6
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
7
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
8
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
9
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
10
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
11
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
12
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
13
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
14
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
15
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
16
 *
 
17
 * This software consists of voluntary contributions made by many individuals
 
18
 * and is licensed under the LGPL. For more information, see
 
19
 * <http://www.phpdoctrine.org>.
 
20
 */
 
21
 
 
22
/**
 
23
 * Doctrine_Node_MaterializedPath_PreOrderIterator
 
24
 *
 
25
 * @package     Doctrine
 
26
 * @subpackage  Node
 
27
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 
28
 * @link        www.phpdoctrine.org
 
29
 * @since       1.0
 
30
 * @version     $Revision: 3884 $
 
31
 * @author      Joe Simms <joe.simms@websites4.com>
 
32
 */
 
33
class Doctrine_Node_MaterializedPath_PreOrderIterator implements Iterator
 
34
{
 
35
    private $topNode = null;
 
36
 
 
37
    private $curNode = null;
 
38
 
 
39
    public function __construct($node, $opts)
 
40
    {
 
41
        throw new Doctrine_Exception('Not yet implemented');
 
42
    }
 
43
 
 
44
    public function rewind()
 
45
    {
 
46
        throw new Doctrine_Exception('Not yet implemented');
 
47
    }
 
48
 
 
49
    public function valid()
 
50
    {
 
51
        throw new Doctrine_Exception('Not yet implemented');
 
52
    }
 
53
 
 
54
    public function current()
 
55
    {
 
56
        throw new Doctrine_Exception('Not yet implemented');
 
57
    }
 
58
 
 
59
    public function key()
 
60
    {
 
61
        throw new Doctrine_Exception('Not yet implemented');
 
62
    }
 
63
 
 
64
    public function next()
 
65
    {
 
66
        throw new Doctrine_Exception('Not yet implemented');
 
67
    }
 
68
}
 
 
b'\\ No newline at end of file'