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