]> err.no Git - sope/blob - sope-xml/SaxObjC/SaxLocator.m
added support for XML-RPC 'nil' type
[sope] / sope-xml / SaxObjC / SaxLocator.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 "SaxLocator.h"
23 #include "common.h"
24
25 @implementation SaxLocator
26
27 - (id)init {
28   return self;
29 }
30 - (id)initWithLocator:(id<SaxLocator>)_locator {
31   if ((self = [self init])) {
32     self->column = [_locator columnNumber];
33     self->line   = [_locator lineNumber];
34     self->pubId  = [[_locator publicId] copy];
35     self->sysId  = [[_locator systemId] copy];
36   }
37   return self;
38 }
39
40 - (void)dealloc {
41   [self->pubId release];
42   [self->sysId release];
43   [super dealloc];
44 }
45
46 /* accessors */
47
48 - (void)setColumnNumber:(int)_col {
49   self->column = _col;
50 }
51 - (int)columnNumber {
52   return self->column;
53 }
54
55 - (void)setLineNumber:(int)_line {
56   self->line = _line;
57 }
58 - (int)lineNumber {
59   return self->line;
60 }
61
62 - (void)setPublicId:(NSString *)_pubId {
63   id o = self->pubId;
64   self->pubId = [_pubId copy];
65   [o release];
66 }
67 - (NSString *)publicId {
68   return self->pubId;
69 }
70
71 - (void)setSystemId:(NSString *)_sysId {
72   id o = self->sysId;
73   self->sysId = [_sysId copy];
74   [o release];
75 }
76 - (NSString *)systemId {
77   return self->sysId;
78 }
79
80 /* NSCopying */
81
82 - (id)copyWithZone:(NSZone *)_zone {
83   return [[[self class] allocWithZone:_zone] initWithLocator:self];
84 }
85
86 @end /* SaxLocator */