]> err.no Git - sope/blob - sope-xml/SaxObjC/SaxDefaultHandler.m
lF fixes
[sope] / sope-xml / SaxObjC / SaxDefaultHandler.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 "SaxDefaultHandler.h"
23 #include "SaxException.h"
24
25 @implementation SaxDefaultHandler
26
27 /* SaxContentHandler */
28
29 - (void)startDocument {
30 }
31 - (void)endDocument {
32 }
33
34 - (void)startPrefixMapping:(NSString *)_prefix uri:(NSString *)_uri {
35 }
36 - (void)endPrefixMapping:(NSString *)_prefix {
37 }
38
39 - (void)startElement:(NSString *)_localName
40   namespace:(NSString *)_ns
41   rawName:(NSString *)_rawName
42   attributes:(id<SaxAttributes>)_attributes
43 {
44 }
45 - (void)endElement:(NSString *)_localName
46   namespace:(NSString *)_ns
47   rawName:(NSString *)_rawName
48 {
49 }
50
51 - (void)characters:(unichar *)_chars length:(int)_len {
52 }
53 - (void)ignorableWhitespace:(unichar *)_chars length:(int)_len {
54 }
55
56 - (void)processingInstruction:(NSString *)_pi data:(NSString *)_data {
57 }
58 - (void)setDocumentLocator:(id<NSObject,SaxLocator>)_locator {
59 }
60 - (void)skippedEntity:(NSString *)_entityName {
61 }
62
63 /* SaxDTDHandler */
64
65 - (void)notationDeclaration:(NSString *)_name
66   publicId:(NSString *)_pubId
67   systemId:(NSString *)_sysId
68 {
69 }
70
71 - (void)unparsedEntityDeclaration:(NSString *)_name
72   publicId:(NSString *)_pubId
73   systemId:(NSString *)_sysId
74   notationName:(NSString *)_notName
75 {
76 }
77
78 /* SaxEntityResolver */
79
80 - (id)resolveEntityWithPublicId:(NSString *)_pubId systemId:(NSString *)_sysId {
81   return nil;
82 }
83
84 /* SaxErrorHandler */
85
86 - (void)warning:(SaxParseException *)_exception {
87 }
88 - (void)error:(SaxParseException *)_exception {
89 }
90
91 - (void)fatalError:(SaxParseException *)_exception {
92   [_exception raise];
93 }
94
95 @end /* SaxDefaultHandler */