]> err.no Git - sope/blob - sope-xml/DOM/DOMNode+Enum.m
use Version file for install locations
[sope] / sope-xml / DOM / DOMNode+Enum.m
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo 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   OGo 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 OGo; 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 // $Id$
22
23 #include "DOMNode+Enum.h"
24 #include "common.h"
25
26 @interface _DOMNodeParentNodeEnumerator : NSEnumerator
27 {
28   id currentNode;
29 }
30 + (id)enumeratorWithDOMNode:(id)_node;
31 @end
32
33 @implementation NSObject(DOMNodeEnum)
34
35 - (NSEnumerator *)domParentNodeEnumerator {
36   return [_DOMNodeParentNodeEnumerator enumeratorWithDOMNode:
37                                          [(DOMNode *)self parentNode]];
38 }
39
40 @end /* DOMNode(Enum) */
41
42 @implementation DOMNode(Enum)
43
44 - (NSEnumerator *)parentNodeEnumerator {
45   return [self domParentNodeEnumerator];
46 }
47
48 @end /* DOMNode(Enum) */
49
50 @implementation _DOMNodeParentNodeEnumerator
51
52 + (id)enumeratorWithDOMNode:(id)_node {
53   _DOMNodeParentNodeEnumerator *e;
54   e = [self alloc];
55   e->currentNode = [_node retain];
56   return [e autorelease];
57 }
58
59 - (void)dealloc {
60   [self->currentNode release];
61   [super dealloc];
62 }
63
64 - (id)nextObject {
65   id old;
66
67   old = self->currentNode;
68   self->currentNode = [[old parentNode] retain];
69   return [old autorelease];
70 }
71
72 @end /* _DOMNodeParentNodeEnumerator */