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