]> err.no Git - sope/blob - sope-xml/DOM/DOMEntity.m
use Version file for install locations
[sope] / sope-xml / DOM / DOMEntity.m
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
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 "DOMEntity.h"
24 #include "common.h"
25
26 @implementation DOMEntity
27
28 /* attributes */
29
30 - (NSString *)publicId {
31   [self doesNotRecognizeSelector:_cmd];
32   return nil;
33 }
34 - (NSString *)systemId {
35   [self doesNotRecognizeSelector:_cmd];
36   return nil;
37 }
38 - (NSString *)notationName {
39   [self doesNotRecognizeSelector:_cmd];
40   return nil;
41 }
42
43 /* node */
44
45 - (DOMNodeType)nodeType {
46   return DOM_ENTITY_NODE;
47 }
48
49 - (BOOL)_isValidChildNode:(id)_node {
50   switch ([_node nodeType]) {
51     case DOM_ELEMENT_NODE:
52     case DOM_PROCESSING_INSTRUCTION_NODE:
53     case DOM_COMMENT_NODE:
54     case DOM_TEXT_NODE:
55     case DOM_CDATA_SECTION_NODE:
56     case DOM_ENTITY_REFERENCE_NODE:
57       return YES;
58         
59     default:
60       return NO;
61   }
62 }
63
64 - (id)attributes {
65   return nil;
66 }
67
68 /* parent node */
69
70 - (id)parentNode {
71   return nil;
72 }
73 - (id)nextSibling {
74   return nil;
75 }
76 - (id)previousSibling {
77   return nil;
78 }
79
80 @end /* DOMEntity */