]> err.no Git - sope/blob - sope-xml/DOM/DOMNodeIterator.m
code reorgs
[sope] / sope-xml / DOM / DOMNodeIterator.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include <DOM/DOMNodeIterator.h>
23 #include <DOM/DOMNodeFilter.h>
24 #include <DOM/DOMNode.h>
25 #include "common.h"
26
27 @implementation NGDOMNodeIterator
28
29 - (id)initWithRootNode:(id)_rootNode
30   whatToShow:(unsigned long)_whatToShow
31   filter:(id)_filter
32   expandEntityReferences:(BOOL)_flag
33 {
34   NSAssert(_rootNode, @"missing root-node !");
35
36   if ((self = [super init])) {
37     self->root       = [_rootNode retain];
38     self->whatToShow = _whatToShow;
39     self->filter     = [_filter retain];
40     self->expandEntityReferences = _flag;
41
42     self->lastNode    = nil;
43     self->beforeFirst = YES;
44     self->afterLast   = NO;
45   }
46   return self;
47 }
48
49 - (void)dealloc {
50   [self->lastNode release];
51   [self->root     release];
52   [self->filter   release];
53   [super dealloc];
54 }
55                  
56 /* attributes */
57
58 - (id)root {
59   return self->root;
60 }
61 - (unsigned long)whatToShow {
62   return self->whatToShow;
63 }
64 - (id)filter {
65   return self->filter;
66 }
67 - (BOOL)expandEntityReferences {
68   return self->expandEntityReferences;
69 }
70
71 /* operations */
72
73 - (id)nextNode {
74   [self doesNotRecognizeSelector:_cmd];
75   return nil;
76 }
77 - (id)previousNode {
78   [self doesNotRecognizeSelector:_cmd];
79   return nil;
80 }
81
82 - (void)detach {
83 }
84
85 @end /* NGDOMNodeIterator */