]> err.no Git - sope/blob - sope-xml/DOM/DOMDocumentType.m
Add libxml2-dev to libsope-xml4.7-dev deps
[sope] / sope-xml / DOM / DOMDocumentType.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 "DOMDocumentType.h"
23 #include "common.h"
24
25 @implementation NGDOMDocumentType
26
27 - (id)initWithName:(NSString *)_name
28   publicId:(NSString *)_pubId
29   systemId:(NSString *)_sysId
30   dom:(id)_dom
31 {
32   [self release];
33   return nil;
34 }
35
36 /* attributes */
37
38 - (NSString *)name {
39   return nil;
40 }
41 - (id)entities {
42   return nil;
43 }
44 - (id)notations {
45   return nil;
46 }
47 - (NSString *)publicId {
48   return nil;
49 }
50 - (NSString *)systemId {
51   return nil;
52 }
53 - (NSString *)internalSubset {
54   return nil;
55 }
56
57 /* node */
58
59 - (DOMNodeType)nodeType {
60   return DOM_DOCUMENT_TYPE_NODE;
61 }
62
63 - (BOOL)_isValidChildNode:(id)_node {
64   return NO;
65 }
66 - (BOOL)hasChildNodes {
67   return NO;
68 }
69 - (id<NSObject,DOMNodeList>)childNodes {
70   return nil;
71 }
72
73 - (id<NSObject,DOMNamedNodeMap>)attributes {
74   return nil;
75 }
76
77 /* parent node */
78
79 - (void)_domNodeRegisterParentNode:(id)_parent {
80   self->parent = _parent;
81 }
82 - (void)_domNodeForgetParentNode:(id)_parent {
83   if (_parent == self->parent)
84     /* the node's parent was deallocated */
85     self->parent = nil;
86 }
87 - (id<NSObject,DOMNode>)parentNode {
88   return self->parent;
89 }
90
91 @end /* NGDOMDocumentType */